/* =========================================================
   Nagasaki Private Tours — Mock Stylesheet
   Palette: deep navy + ivory + gold (Japanese luxury hotel)
   ========================================================= */

:root {
  --navy:        #050742;
  --navy-deep:   #050742;
  --navy-soft:   #050742;
  --ivory:       #f6f1e7;
  --ivory-soft:  #faf6ed;
  --gold:        #b8923a;
  --gold-light:  #d0ae5a;
  --gold-dark:   #8b6d24;
  --text:        #1f2a3a;
  --text-soft:   #5a6273;
  --line:        rgba(184, 153, 104, 0.35);
  --serif:       'Cormorant Garamond', 'Times New Roman', serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --maxw:        1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.btn-lg { padding: 17px 42px; font-size: 14px; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-gold-outline { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: #fff; }
.btn-gold-outline-light { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }
.btn-gold-outline-light:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ---------- Ornament (◈ — ◈) ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0;
}
.ornament-line { flex: 0 0 90px; height: 1px; background: var(--gold); opacity: .8; }
.ornament-mark { color: var(--gold); font-size: 14px; letter-spacing: .2em; }
.ornament.left-align { justify-content: flex-start; margin-left: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 14px 0;
}
.eyebrow.gold { color: var(--gold); }

/* ---------- Header ---------- */
.site-header { background: var(--navy); border-bottom: 1px solid rgba(201,164,73,0.20); position: sticky; top: 0; z-index: 50; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 100px; width: auto; display: block; }
.brand-mark { font-size: 26px; color: var(--gold); line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--gold-light);
  margin-top: 2px;
}
.primary-nav { display: flex; gap: 24px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.06em; }
.primary-nav a { color: rgba(255,255,255,0.88); padding: 6px 0; transition: color .2s; }
.primary-nav a:hover { color: var(--gold-light); }
.mobile-header-actions { display: none; }
.mobile-menu { position: relative; }
.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(208,174,90,0.55);
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: border-color .2s, background .2s;
}
.mobile-menu-toggle::-webkit-details-marker { display: none; }
.mobile-menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  display: block;
}
.mobile-menu[open] .mobile-menu-toggle,
.mobile-menu-toggle:hover {
  background: rgba(208,174,90,0.12);
  border-color: var(--gold-light);
}
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(260px, calc(100vw - 24px));
  display: flex;
  flex-direction: column;
  background: var(--navy-deep);
  border: 1px solid rgba(208,174,90,0.42);
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
  padding: 8px;
  z-index: 80;
}
.mobile-menu-panel a {
  color: rgba(255,255,255,0.9);
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-panel a:last-child { border-bottom: 0; }
.mobile-menu-panel a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.85);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,66,0.10) 0%, rgba(5,7,66,0.35) 100%),
    linear-gradient(90deg, rgba(5,7,66,0.55) 0%, rgba(5,7,66,0.05) 60%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 110px;
  max-width: 720px;
  margin-left: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  margin-right: 0;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 4px 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin: 0 0 28px 0;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero .ornament { margin-left: 0; justify-content: flex-start; }
.hero .ornament-line { background: var(--gold-light); }
.hero .ornament-mark { color: var(--gold-light); }

/* ---------- Benefits ---------- */
.benefits { background: var(--navy); color: #fff; padding: 56px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.benefit { text-align: center; padding: 12px 24px; position: relative; }
.benefit + .benefit::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(184,153,104,0.25);
}
.benefit-icon { font-size: 38px; color: var(--gold); line-height: 1; margin-bottom: 14px; display: flex; justify-content: center; align-items: center; min-height: 56px; }
.benefit-icon svg { width: 52px; height: 52px; display: block; }
.benefit-icon-lg svg { width: 64px; height: 64px; }
.benefit h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  margin: 0 0 8px 0;
  color: var(--gold);
}
.benefit p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 0;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }
.section-lead {
  font-size: 14.5px;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }
.review-ctas { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.review-ctas .btn { display: inline-block; }

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.card-link:hover { color: var(--navy); border-color: var(--navy); }

/* ---------- Tours (ivory section) ---------- */
.tours { background: var(--ivory); padding: 92px 0 100px; }
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tour-card {
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(19,36,58,0.12); }
a.tour-card { display: block; color: inherit; text-decoration: none; }
a.tour-card:hover .card-link { color: var(--navy); border-color: var(--navy); }
.tour-img { width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.tour-body { padding: 22px 22px 26px; }
.tour-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px 0;
  color: var(--navy);
}
.tour-body p { font-size: 13.5px; color: var(--text-soft); margin: 0 0 4px; line-height: 1.7; }
.tour-list-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  width: fit-content;
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.2;
}
.tour-list-price {
  margin: -4px 0 14px;
  color: var(--navy);
  font-size: 14px;
}

/* ---------- Courses (navy section) ---------- */
.courses { background: var(--navy); color: #fff; padding: 92px 0; }
.courses-head { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.courses-intro h2 { text-align: left; }
.courses-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 22px 0 28px;
  line-height: 1.85;
}
.course-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.course-card {
  background: var(--navy-soft);
  border: 1px solid rgba(184,153,104,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course-img { width: 100%; aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.course-body { padding: 20px 22px 24px; }
.course-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px 0;
}
.course-body h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 0 0 14px 0;
  color: var(--gold-light);
}
.course-body .card-link { margin-top: 16px; color: var(--gold-light); border-bottom-color: var(--gold); }
.course-body .card-link:hover { color: #fff; border-color: #fff; }
.timetable { list-style: none; margin: 0; padding: 0; font-size: 13px; color: rgba(255,255,255,0.85); }
.timetable li {
  display: flex;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(184,153,104,0.12);
}
.timetable li:last-child { border-bottom: none; }
.timetable .time {
  flex: 0 0 50px;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* ---------- Blog Post (single article) ---------- */
.post-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 90px;
}
.post-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.post-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.2;
  margin: 14px 0 18px;
  color: #fff;
}
.post-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.post-body {
  max-width: 760px;
  padding: 70px 28px 90px;
}
.post-content { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.post-content p { margin: 0 0 1.4em; }
.post-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin: 2em 0 0.8em;
  letter-spacing: 0.02em;
}
.post-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 1.6em 0 0.6em;
}
.post-content h4 { font-size: 18px; font-weight: 600; color: var(--navy); margin: 1.4em 0 0.5em; }
.post-content ul, .post-content ol { margin: 0 0 1.4em 1.4em; padding: 0; }
.post-content li { margin-bottom: 0.5em; }
.post-content a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 1.6em 0;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
}
.post-figures-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 2em 0;
}
.post-figures-single { margin: 2em 0; max-width: 480px; }
.post-figure { margin: 0; }
.post-figure img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.post-figures-single .post-figure img { aspect-ratio: auto; height: auto; }
@media (max-width: 700px) {
  .post-figures-row { grid-template-columns: repeat(2, 1fr); }
}
.post-cta {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .post-hero { padding: 80px 0 60px; }
  .post-cta { justify-content: center; }
}

/* ---------- Gallery (Tour Moments slider) ---------- */
.gallery { background: var(--ivory-soft); padding: 92px 0 100px; }
.gallery .section-head { margin-bottom: 36px; }
.gallery-wrap { position: relative; }
.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 80px;
  margin: 0 -80px;
  scroll-padding-inline: 80px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 calc((100% - 160px - 4 * 18px) / 5);
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: #eee;
  margin: 0;
}
.gallery-slide img { transition: transform .5s ease, opacity .4s ease, filter .4s ease; }
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-slide:hover img { transform: scale(1.04); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(184,146,58,0.30);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 22px rgba(19,36,58,0.16);
  transition: background .2s, color .2s, transform .2s;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--serif);
}
.gallery-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.gallery-arrow:disabled { opacity: 0.3; cursor: default; }
.gallery-prev { left: -8px; }
.gallery-next { right: -8px; }

.gallery-counter {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,7,66,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  font-family: var(--serif);
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

@media (max-width: 900px) {
  .gallery-slide { flex: 0 0 76vw; aspect-ratio: 3 / 4; scroll-snap-align: center; }
  .gallery-arrow { display: none; }
  .gallery-track { padding: 4px 12vw; margin: 0 -28px; scroll-padding-inline: 12vw; gap: 12px; }
  .lightbox { padding: 20px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--ivory-soft); padding: 92px 0 100px; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; line-height: 1; }
.stars.sm { font-size: 14px; }
.rating-text { font-size: 13px; color: var(--text-soft); letter-spacing: 0.04em; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
.review-card {
  background: #fff;
  padding: 36px 32px 28px;
  border: 1px solid rgba(184,153,104,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: -8px;
  left: 18px;
}
.review-headline {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.review-text {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.reviewer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.reviewer-name {
  margin: 6px 0 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.reviewer-meta { margin: 0; font-size: 12px; color: var(--text-soft); letter-spacing: 0.04em; }

/* ---------- About Guides ---------- */
.guides { background: #fff; padding: 100px 0; }
.guides-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.guides-image { position: relative; }
.guides-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.guides-photo-accent {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--gold);
  z-index: 1;
}
.guides-content {}
.guides-lead {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  margin: 22px 0 24px;
}
.guides-body { font-size: 14.5px; color: var(--text-soft); line-height: 1.85; margin: 0 0 18px; }
.guides .btn { margin-top: 12px; }

/* ---------- Dual sections (text + image) ---------- */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-deep);
  color: #fff;
  min-height: 480px;
}
.dual.reverse { background: var(--navy); }
.dual-half { display: flex; align-items: center; }
.dual-text { padding: 60px 8%; }
.dual-inner { max-width: 460px; }
.dual-text h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
  color: #fff;
}
.dual-text p { font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.85; margin: 0; }
.dual-image { background-size: cover; background-position: center; min-height: 480px; }

/* ---------- Blog ---------- */
.blog { background: var(--ivory); padding: 92px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(19,36,58,0.10); }
.blog-card { position: relative; cursor: pointer; }
.blog-card h3 a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.blog-card .blog-img, .blog-card .card-link { position: relative; z-index: 2; }
.blog-img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.blog-body { padding: 24px 26px 28px; }
.blog-meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 10px;
}
.blog-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--navy);
}
.blog-excerpt { font-size: 13.5px; color: var(--text-soft); line-height: 1.7; margin: 0 0 12px; }

/* ---------- FAQ ---------- */
.faq { background: var(--navy); color: #fff; padding: 92px 0 100px; }
.faq .section-lead { color: rgba(255,255,255,0.7); }
.faq-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.faq-item {
  border-top: 1px solid rgba(184,153,104,0.20);
  padding: 22px 4px;
}
.faq-item:last-child { border-bottom: 1px solid rgba(184,153,104,0.20); }
.faq-item summary {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 300;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
}

/* ---------- Other Destinations ---------- */
.destinations { background: var(--ivory-soft); padding: 92px 0 100px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dest-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.dest-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(15%);
}
.dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.dest-body { padding: 22px 24px 26px; }
.dest-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  color: var(--navy);
}
.dest-body p { margin: 0; font-size: 13.5px; color: var(--text-soft); }

/* ---------- Contact ---------- */
.contact {
  background: var(--navy-deep);
  color: #fff;
  padding: 100px 0;
  position: relative;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-lead {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin: 22px 0 30px;
}
.contact-meta { list-style: none; padding: 0; margin: 0; }
.contact-meta li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(184,153,104,0.18);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-meta li:last-child { border-bottom: none; }
.meta-label {
  flex: 0 0 110px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  align-self: center;
}
.contact-meta a { color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.contact-form {
  background: var(--navy);
  padding: 36px 36px 40px;
  border: 1px solid rgba(184,153,104,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  gap: 8px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,153,104,0.30);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { align-self: flex-start; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 28px;
  border-top: 1px solid rgba(184,153,104,0.18);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { color: var(--gold-light); font-size: 28px; }
.footer-brand .brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
  display: block;
}
.footer-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.footer-nav { display: flex; gap: 24px; font-size: 12px; letter-spacing: 0.05em; flex-wrap: wrap; justify-content: center; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.footer-social a { transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-social .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; }
.footer-social .social-icon svg { width: 20px; height: 20px; display: block; }
.footer-social .footer-social-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); margin: 0 4px; }
.footer-social .social-text { font-size: 11.5px; }
.copyright {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.4);
}
.copyright .commerce-link {
  font-size: 10.5px;
  color: rgba(255,255,255,0.32);
  margin-left: 10px;
  text-decoration: none;
  transition: color .2s;
}
.copyright .commerce-link:hover { color: rgba(255,255,255,0.7); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .primary-nav { gap: 18px; font-size: 11.5px; }
}
@media (max-width: 700px) {
  .section-title { font-size: 22px; line-height: 1.2; letter-spacing: 0.02em; white-space: nowrap; }
  .section-title.left { white-space: normal; }
  .page-title { font-size: 26px; }
  .archive-title { font-size: 28px; }
  .site-header .container { padding: 0 12px; }
  .header-inner { padding-top: 8px; padding-bottom: 8px; gap: 8px; }
  .brand { gap: 8px; }
  .brand-logo { height: 48px; }
  .brand-name { font-size: 13px; letter-spacing: 0.12em; }
  .brand-sub { font-size: 7.5px; letter-spacing: 0.18em; }
  .site-header .btn-gold { padding: 8px 12px; font-size: 10.5px; letter-spacing: 0.06em; white-space: nowrap; }
}
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .mobile-header-actions { display: flex; align-items: center; gap: 8px; order: 2; }
  .mobile-menu { order: 0; }
  .header-inner > .brand { order: 0; margin-left: 0; }
  .header-inner > .btn-gold { order: 1; margin-left: auto; }
  .benefits { padding: 18px 0; }
  .benefits .container { padding: 0 10px; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .benefit { padding: 4px 4px; }
  .benefit-icon { min-height: 32px; margin-bottom: 4px; }
  .benefit-icon svg { width: 28px; height: 28px; }
  .benefit-icon-lg svg { width: 34px; height: 34px; }
  .benefit h3 { font-size: 12px; line-height: 1.2; margin: 0; letter-spacing: 0; }
  .benefit p { display: none; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-head { grid-template-columns: 1fr; }
  .course-cards { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .guides-inner { grid-template-columns: 1fr; gap: 48px; }
  .guides-photo-accent { inset: 18px -18px -18px 18px; }
  .blog-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .dual { grid-template-columns: 1fr; min-height: 0; }
  .dual-image { min-height: 280px; }
  .dual.reverse .dual-image { order: -1; }
  .hero-content { margin: 0 auto; padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 560px) {
  .tour-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
  .hero-title { font-size: 34px; }
  .footer-nav { gap: 14px; }
}

/* ---------- Blog Archive ---------- */
.blog-archive-hero { background: var(--ivory); padding: 80px 0 32px; text-align: center; }
.archive-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 500; color: var(--navy); margin: 0 0 8px; }
.archive-lead { max-width: 720px; margin: 18px auto 28px; color: #4a5566; line-height: 1.7; }
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.cat-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  transition: all .2s;
}
.cat-chip:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cat-chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.blog-archive { background: var(--ivory); padding: 40px 0 100px; }
.blog-grid-archive { grid-template-columns: repeat(3, 1fr); }

/* Make blog-img clickable area (for archive page) */
a.blog-img { display: block; position: relative; cursor: pointer; transition: opacity .2s; aspect-ratio: 16 / 10; overflow: hidden; }
a.blog-img:hover { opacity: 0.92; }
a.blog-img img,
a.blog-img .blog-img-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.pagination-wrap { margin-top: 60px; text-align: center; }
.pagination-wrap .nav-links { display: inline-flex; gap: 6px; align-items: center; }
.pagination-wrap .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  min-width: 44px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 14px;
  transition: all .2s;
}
.pagination-wrap .page-numbers:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.pagination-wrap .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 900px) {
  .blog-grid-archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid-archive { grid-template-columns: 1fr; }
  .archive-title { font-size: 36px; }
}

/* ---------- About Page ---------- */
.page-hero { background: var(--ivory); padding: 90px 0 50px; text-align: center; }
.page-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin: 14px 0 6px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.page-lead {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 15.5px;
}

.story { background: #fff; padding: 100px 0; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.story-image { position: relative; position: sticky; top: 110px; }
.story-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.story-photo-accent {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--gold);
  z-index: 1;
}
.story-content {}
.story-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.9;
  margin: 0 0 18px;
}
.story-text strong { color: var(--navy); font-weight: 600; }
.story-text em { color: var(--navy); font-style: italic; font-family: var(--serif); font-size: 17px; }
.story-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}
.signature-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
}

.philosophy { background: var(--ivory); padding: 92px 0; }
.philosophy .section-lead { max-width: 780px; margin-left: auto; margin-right: auto; }
.philosophy .section-lead + .section-lead { margin-top: 14px; }

.why-trust { background: #fff; padding: 92px 0; }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.trust-mark {
  color: var(--gold);
  font-size: 14px;
  line-height: 1.6;
  flex-shrink: 0;
}

.who-serve { background: var(--ivory); padding: 92px 0 100px; }
.who-serve .section-lead { max-width: 780px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-image { position: relative; top: auto; }
  .story-photo-accent { inset: 18px -18px -18px 18px; }
}
@media (max-width: 560px) {
  .page-title { font-size: 36px; }
}

/* ---------- Tours List Page ---------- */
.tours-list { background: var(--ivory); padding: 40px 0 100px; }
.tour-group { margin-top: 64px; scroll-margin-top: 100px; }
.tour-group:first-of-type { margin-top: 0; }
.tour-group-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.tour-group-icon { font-size: 26px; }

.tour-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tour-list-grid-single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }

.tour-list-card {
  background: #fff;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tour-list-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(19,36,58,0.10); }
.tour-list-card { position: relative; }
.tour-featured { border: 2px solid var(--gold); box-shadow: 0 12px 32px rgba(19,36,58,0.08); }
.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(19,36,58,0.18);
}

.tour-list-img { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.tour-list-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.tour-list-body { padding: 24px 26px; display: flex; flex-direction: column; }
.tour-list-body h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.tour-list-body h4 a { color: inherit; text-decoration: none; transition: color .2s; }
.tour-list-body h4 a:hover { color: var(--gold); }
.tour-list-meta {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  line-height: 1.6;
}
.tour-list-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0 0 18px;
  flex: 1;
}
.tour-list-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: auto; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

.why-choose { background: #fff; padding: 92px 0; }
.how-to-book { background: #fff; padding: 92px 0 100px; }

@media (max-width: 900px) {
  .tour-list-grid { grid-template-columns: 1fr; }
  .tour-list-card { grid-template-columns: 220px 1fr; }
}
@media (max-width: 560px) {
  .tour-list-card { grid-template-columns: 1fr; }
  .tour-list-img { aspect-ratio: 16 / 10; }
  .tour-group-title { font-size: 22px; }
}

/* ---------- Commerce (Japanese SCTL page) ---------- */
.commerce-title { font-family: 'Noto Sans JP', var(--serif); font-size: 36px; font-weight: 500; }
.commerce { background: var(--ivory); padding: 40px 0 100px; font-family: 'Noto Sans JP', sans-serif; }
.commerce-list {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.commerce-list dt,
.commerce-list dd { padding: 22px 28px; }
.commerce-list dt {
  background: var(--ivory);
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.commerce-list dt:first-child { border-top: none; }
.commerce-list dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.commerce-list dd:last-child { border-bottom: none; }
.commerce-note { display: inline-block; margin-top: 8px; font-size: 12.5px; color: var(--text-soft); }

@media (min-width: 700px) {
  .commerce-list { display: grid; grid-template-columns: 220px 1fr; }
  .commerce-list dt { border-top: 1px solid rgba(0,0,0,0.06); border-right: 1px solid rgba(0,0,0,0.06); }
  .commerce-list dt:first-child { border-top: none; }
  .commerce-list dd:nth-of-type(1) { border-top: none; }
}

/* ---------- Tour Detail Page ---------- */
.tour-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.tour-hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,36,58,0.55) 0%, rgba(19,36,58,0.78) 100%);
  z-index: 1;
}
.tour-hero-content { position: relative; z-index: 2; padding: 100px 28px; max-width: 880px; }
.tour-hero-title {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.tour-hero-lead {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
}
.eyebrow.gold-light { color: #d4a857; }
.tour-meta-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.tour-meta-list li { display: flex; align-items: center; gap: 8px; }
.tour-meta-icon { font-size: 18px; }

.btn-lg { padding: 18px 36px; font-size: 14px; letter-spacing: 0.12em; }

/* Experience Panels */
.tour-panels { background: #fff; padding: 92px 0; }
.booking-widget-section {
  background: #fff;
  padding: 76px 0 24px;
}
.booking-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.booking-widget-box {
  max-width: 980px;
  min-height: 420px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(5,7,66,0.12);
  box-shadow: 0 18px 45px rgba(5,7,66,0.08);
}
.booking-widget-box noscript {
  display: block;
  color: var(--text-soft);
  text-align: center;
}
.booking-widget-box iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}
.panel-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 980px; margin: 50px auto 0;
}
.panel-card {
  background: var(--ivory);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
}
.panel-icon { font-size: 32px; margin-bottom: 12px; }
.panel-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}
.panel-card p { font-size: 14px; color: var(--text-soft); line-height: 1.8; margin: 0; }

/* Itinerary timeline */
.itinerary { background: var(--ivory); padding: 92px 0; }
.itinerary-list {
  list-style: none; padding: 0; margin: 50px auto 0;
  max-width: 760px;
  position: relative;
}
.itinerary-list::before {
  content: ''; position: absolute;
  left: 73px; top: 12px; bottom: 12px;
  width: 1px; background: rgba(212, 168, 87, 0.4);
}
.itinerary-list li {
  display: grid; grid-template-columns: 60px 26px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  position: relative;
}
.itinerary-time {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}
.itinerary-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.itinerary-stop {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.itinerary-note {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 18px 22px;
  background: #fff;
  border-left: 3px solid var(--gold);
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Pricing */
.pricing { background: #fff; padding: 92px 0; }

/* Included */
.included { background: var(--ivory); padding: 92px 0; }
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 960px; margin: 50px auto 0;
}
.included-col {
  background: #fff;
  padding: 32px;
  border-top: 3px solid var(--gold);
}
.included-col.included-no { border-top-color: rgba(0,0,0,0.15); }
.included-col h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
}
.included-col ul { list-style: none; padding: 0; margin: 0; }
.included-col li {
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.included-col li:last-child { border-bottom: none; }
.included-col.included-yes li::before { content: '✓ '; color: var(--gold); font-weight: 600; }
.included-col.included-no li::before { content: '— '; color: rgba(0,0,0,0.3); }

/* Practical */
.practical { background: #fff; padding: 92px 0; }
.practical .commerce-list { font-family: var(--sans); }

/* FAQ accordion (works on any background) */
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 12px;
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 26px 24px;
  margin: 0;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .panel-grid, .included-grid { grid-template-columns: 1fr; }
  .tour-hero-title { font-size: 36px; }
}
@media (max-width: 560px) {
  .tour-hero-title { font-size: 30px; }
  .itinerary-list li { grid-template-columns: 50px 22px 1fr; gap: 10px; }
  .itinerary-list::before { left: 61px; }
}
