/* ============================================================
   Fuji Soul Tours — Booking-First LP
   Static CSS (no framework). Blue-led "indigo timetable" system:
   cool paper, indigo ink, vermilion reserved for booking CTAs.
   ============================================================ */

:root {
  --paper:      oklch(0.973 0.005 240);
  --paper-deep: oklch(0.942 0.012 240);
  --ink:        oklch(0.23 0.02 255);
  --ink-soft:   oklch(0.36 0.018 252);
  --mid:        oklch(0.52 0.012 250);
  --hair:       oklch(0.885 0.012 240);
  --hair-soft:  oklch(0.93 0.008 240);
  --ai:         oklch(0.45 0.135 252);
  --ai-deep:    oklch(0.36 0.12 252);
  --ai-tint:    oklch(0.95 0.02 250);
  --night:      oklch(0.255 0.05 255);
  --night-soft: oklch(0.31 0.05 253);
  --on-night:   oklch(0.96 0.006 240);
  --on-night-dim: oklch(0.78 0.02 245);
  --cta:        oklch(0.58 0.17 30);
  --cta-deep:   oklch(0.50 0.16 28);
  --ok:         oklch(0.50 0.10 150);
  --sale-light: oklch(0.48 0.11 150);
  --sale-dark:  oklch(0.82 0.13 150);
  --star:       oklch(0.68 0.13 75);
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--ai); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

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

/* ---- shared section scaffolding ---- */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-deep); }
.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ai);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.kicker::before { content: ""; width: 28px; height: 1.5px; background: var(--ai); }
.section h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.01em; }
.section-lede { margin-top: 14px; max-width: 560px; color: var(--ink-soft); font-size: 17.5px; }

/* ---- CTA buttons: vermilion = booking only ---- */
.btn-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--cta); color: oklch(0.985 0.005 60);
  font-family: var(--font-body); font-weight: 700; font-size: 16.5px;
  padding: 16px 30px; border: none; border-radius: 4px; cursor: pointer;
  text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-book:hover { background: var(--cta-deep); transform: translateY(-1px); }
.btn-book.big { font-size: 18px; padding: 18px 38px; }
.btn-book:disabled { opacity: 0.7; cursor: wait; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; font-size: 15.5px;
  text-decoration: none; border-bottom: 1.5px solid var(--hair);
  padding-bottom: 2px; transition: border-color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--ink); }
.cta-micro { font-size: 13.5px; color: var(--mid); margin-top: 10px; }
.cta-micro strong { color: var(--sale-light); }

/* ---- promo tag (hidden when html[data-promo="off"]) ----
   Styled as a train-ticket stub — solid fare box + perforation + date —
   to match the indigo-timetable system. */
.promo-chip {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--cta-deep); border-radius: 2px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cta-deep);
  background: white; overflow: hidden;
}
.promo-chip .pc-off { background: var(--cta-deep); color: oklch(0.985 0.005 60); padding: 5px 11px; }
.promo-chip .pc-ends { padding: 5px 11px; border-left: 1px dashed oklch(0.75 0.1 30); display: inline-flex; align-items: center; }
html[data-promo="off"] .promo-only { display: none !important; }
html[data-promo="off"] .old-price { display: none; }
html[data-promo="off"] .sale-price { color: inherit; }
.old-price { text-decoration: line-through; opacity: 0.55; font-weight: 500; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, white);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair-soft);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav-logo { height: 34px; width: auto; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 600; white-space: nowrap;
}
.nav-links a:hover { color: var(--ai); }
.nav .btn-book { padding: 10px 20px; font-size: 14.5px; white-space: nowrap; }

/* mobile: hamburger + dropdown menu */
.nav-burger {
  display: none; width: 44px; height: 44px; flex-shrink: 0;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu { display: none; border-top: 1px solid var(--hair-soft); }
.nav-menu.open { display: block; }
.nav-menu a {
  display: block; padding: 14px 20px; min-height: 44px; box-sizing: border-box;
  color: var(--ink-soft); text-decoration: none; font-size: 15.5px; font-weight: 600;
  border-bottom: 1px solid var(--hair-soft);
}
.nav-menu a:last-child { border-bottom: none; }
.nav-menu a:active { color: var(--ai); background: var(--ai-tint); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { gap: 14px; }
  .nav .btn-book { margin-left: auto; }
  .nav-burger { display: flex; }
}
@media (min-width: 901px) { .nav-menu { display: none !important; } }

/* ============ HERO (3 variants via html[data-hero]) ============ */
.hero { padding: 64px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: stretch; }
/* lives inside the h1 (SEO) but renders as the small kicker line */
.hero-kicker { color: var(--ai); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; line-height: 1.6; }
.hero h1 { font-size: clamp(38px, 4.8vw, 62px); font-weight: 600; letter-spacing: -0.015em; }
.hero h1 em { font-style: italic; color: var(--ai); }
.hero-sub { margin-top: 20px; font-size: 18px; color: var(--ink-soft); max-width: 520px; }
.hero-proof { margin-top: 24px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.7; text-wrap: balance; max-width: 46ch; }
.hero-proof .star { color: var(--star); }
.hero-promo { margin-top: 26px; }
.hero-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.hero-price-row .from { font-size: 14px; color: var(--mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-price-row .price { font-family: var(--font-display); font-size: 34px; font-weight: 600; }
.hero-price-row .per { font-size: 14px; color: var(--mid); }
.hero-ctas { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-photo { border-radius: 6px; overflow: hidden; box-shadow: 0 24px 60px -24px oklch(0.3 0.05 255 / 0.45); }
.hero-photo picture { display: block; height: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }

/* variant: editorial — copy-first, photo strip below */
html[data-hero="editorial"] .hero-grid { grid-template-columns: 1fr; gap: 44px; }
html[data-hero="editorial"] .hero h1 { font-size: clamp(44px, 6vw, 80px); max-width: 17ch; }
html[data-hero="editorial"] .hero-photo { display: none; }
html[data-hero="editorial"] .hero-strip { display: grid; }
.hero-strip { display: none; grid-template-columns: 1.6fr 1fr 1fr; gap: 14px; }
.hero-strip img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; }

/* variant: bookcard — quick-pick card on the right */
html[data-hero="bookcard"] .hero-photo { display: none; }
html[data-hero="bookcard"] .hero-card { display: block; align-self: center; }
.hero-card {
  display: none; background: white; border: 1px solid var(--hair);
  border-radius: 8px; padding: 28px; box-shadow: 0 24px 60px -28px oklch(0.3 0.05 255 / 0.4);
}
.hero-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.hero-card .hc-sub { font-size: 13.5px; color: var(--mid); margin-bottom: 18px; }
.hc-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.hc-group {
  border: 1.5px solid var(--hair); border-radius: 6px; background: white;
  padding: 10px 6px; text-align: center; cursor: pointer; font-family: var(--font-body);
}
.hc-group .g-n { font-weight: 700; font-size: 14px; display: block; }
.hc-group .g-p { font-size: 12.5px; color: var(--mid); display: block; margin-top: 2px; }
.hc-group[aria-pressed="true"] { border-color: var(--ai); background: var(--ai-tint); }
.hc-total { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--hair-soft); padding-top: 14px; margin-bottom: 16px; }
.hc-total .t-label { font-size: 13px; color: var(--mid); }
.hc-total .t-val { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.hero-card .btn-book { width: 100%; }
.hc-note { font-size: 12.5px; color: var(--mid); text-align: center; margin-top: 10px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo img { min-height: 0; aspect-ratio: 4/2.9; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip img:first-child { grid-column: 1 / -1; }
}

/* ============ TRUST BAR ============ */
.trust { border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft); background: white; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px 18px; text-align: center; border-left: 1px solid var(--hair-soft); }
.trust-item:first-child { border-left: none; }
.trust-item .t-big { font-family: var(--font-display); font-size: 19px; font-weight: 600; display: block; }
.trust-item .t-small { font-size: 13px; color: var(--mid); }
@media (max-width: 760px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item { border-top: 1px solid var(--hair-soft); }
  .trust-item:nth-child(-n+2) { border-top: none; }
}

/* ============ ROUTE FIT ============ */
.route-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 36px 0 0; }
.route-tab {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; white-space: nowrap;
  border: 1.5px solid var(--hair); background: white; color: var(--ink-soft);
  border-radius: 999px; padding: 9px 18px; cursor: pointer;
}
.route-tab[aria-selected="true"] { border-color: var(--ai); background: var(--ai); color: white; }
.route-line {
  margin-top: 28px; background: white; border: 1px solid var(--hair);
  border-radius: 8px; padding: 34px 38px;
}
.route-stops { display: flex; align-items: stretch; gap: 0; }
.route-stop { flex: 1; position: relative; }
.route-stop .r-time { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.route-stop .r-name { font-size: 14px; font-weight: 700; margin-top: 2px; }
.route-stop .r-det { font-size: 13px; color: var(--mid); margin-top: 2px; }
.route-stop::before {
  content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 3px;
  background: var(--hair);
}
.route-stop.tour::before { background: var(--ai); }
.route-stop::after {
  content: ""; position: absolute; top: -26px; left: 0; width: 11px; height: 11px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--ai);
}
.route-note { margin-top: 26px; font-size: 14px; color: var(--mid); }
.route-note strong { color: var(--ink); }
@media (max-width: 760px) {
  .route-stops { flex-direction: column; gap: 22px; }
  .route-stop::before, .route-stop::after { display: none; }
  .route-stop { padding-left: 18px; border-left: 3px solid var(--hair); }
  .route-stop.tour { border-left-color: var(--ai); }
}

/* ============ YOUR DAY (timeline + photos) ============ */
.day-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; margin-top: 48px; align-items: start; }
.day-timeline { border-left: 2px solid var(--hair); padding-left: 28px; display: flex; flex-direction: column; gap: 26px; }
.day-item { position: relative; }
.day-item::before {
  content: ""; position: absolute; left: -34.5px; top: 7px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--ai); border: 2.5px solid var(--paper);
}
.day-item .d-time { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--ai); }
.day-item .d-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-top: 2px; }
.day-item .d-desc { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; max-width: 40ch; }
.day-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: sticky; top: 96px; }
.day-photos figure { margin: 0; }
.day-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.day-photos figcaption { font-size: 12.5px; color: var(--mid); margin-top: 6px; }
.day-photos figure:first-child { grid-column: 1 / -1; }
.day-photos figure:first-child img { aspect-ratio: 16/8.5; }
.day-foot { margin-top: 44px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
@media (max-width: 880px) { .day-grid { grid-template-columns: 1fr; gap: 40px; } .day-photos { position: static; } }

/* ============ WEATHER-PROOF ============ */
.weather { background: var(--night); color: var(--on-night); }
.weather .kicker { color: oklch(0.72 0.09 250); }
.weather .kicker::before { background: oklch(0.72 0.09 250); }
.weather h2 { color: var(--on-night); }
.weather .section-lede { color: var(--on-night-dim); }
.weather-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; align-items: start; }
.weather-col h3 { font-size: 21px; font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.weather-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.weather-list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--on-night-dim); }
.weather-list li::before { content: "—"; color: oklch(0.6 0.08 250); flex-shrink: 0; }
.weather-quote {
  margin: 48px 0 0; border: 1px solid var(--night-soft); border-radius: 8px;
  padding: 30px 34px; background: var(--night-soft);
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
}
.weather-quote .q-mark { font-family: var(--font-display); font-size: 54px; line-height: 1; color: oklch(0.65 0.1 250); }
.weather-quote blockquote { margin: 0; font-family: var(--font-display); font-size: 19px; font-style: italic; line-height: 1.5; }
.weather-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13.5px; color: var(--on-night-dim); }
@media (max-width: 760px) { .weather-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============ ADD-ONS (upsell) ============ */
/* 8 compact cards in 4×2 — same two rows as the original 6-card layout,
   so the section doesn't grow with the extra experiences */
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.addon {
  background: white; border: 1px solid var(--hair); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
}
.addon img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.addon-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.addon-body h3 { font-size: 16px; font-weight: 600; }
.addon-body p { font-size: 12.5px; color: var(--ink-soft); flex: 1; line-height: 1.5; }
.addon-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-top: 8px; border-top: 1px solid var(--hair-soft); padding-top: 9px; }
.addon-meta .a-price { font-weight: 700; font-size: 12.5px; }
.addon-meta .a-dur { font-size: 12px; color: var(--mid); }
.addons-how {
  margin-top: 32px; background: var(--ai-tint); border: 1px solid oklch(0.89 0.03 250);
  border-radius: 8px; padding: 22px 28px; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.addons-how p { font-size: 15px; }
.addons-how strong { color: var(--ai-deep); }
@media (max-width: 880px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
/* mobile: horizontal thumbnail cards keep 8 add-ons shorter than the
   old 6 stacked cards */
@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; gap: 10px; }
  .addon { flex-direction: row; align-items: stretch; }
  .addon img { width: 108px; min-width: 108px; height: auto; aspect-ratio: auto; }
  .addon-body { padding: 12px 14px; }
  .addon-body h3 { font-size: 15px; }
  .addon-body p { font-size: 12px; }
  .addon-meta { margin-top: 6px; padding-top: 7px; }
}

/* ============ REVIEWS ============ */
/* Live cards are rendered into #reviewsGrid by the shared reviews.js
   (do not modify reviews.js — the LP styles its markup instead). */
.reviews-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.reviews-score { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.reviews-score .stars { color: var(--star); letter-spacing: 2px; }
.reviews-carousel-wrap { position: relative; margin-top: 40px; overflow: hidden; }
.reviews-grid {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 2px 2px 16px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  background: white; border: 1px solid var(--hair); border-radius: 8px;
  padding: 26px 28px; min-width: 330px; max-width: 380px; flex-shrink: 0;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--star); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--ink-soft); line-height: 1.62; margin-bottom: 16px; }
.review-full { display: none; }
.review-card.expanded .review-truncated { display: none; }
.review-card.expanded .review-full { display: block; }
.review-read-more {
  background: none; border: none; color: var(--ai); cursor: pointer;
  font-size: 13px; font-weight: 600; padding: 0; margin-bottom: 12px;
  font-family: inherit; text-align: left;
}
.review-read-more:hover { text-decoration: underline; }
.review-author { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: auto; }
.review-date { font-size: 13.5px; color: var(--mid); }
.review-photos { display: flex; gap: 6px; margin-bottom: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.review-photos::-webkit-scrollbar { display: none; }
.review-photo { width: 72px; height: 72px; min-width: 72px; object-fit: cover; border-radius: 6px; border: 1px solid var(--hair); cursor: pointer; transition: opacity 0.2s; scroll-snap-align: start; }
.review-photo:hover { opacity: 0.8; }
.reviews-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 4px; }
.reviews-nav button {
  width: 38px; height: 38px; border: 1.5px solid var(--hair); background: white;
  border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}
.reviews-nav button:hover { background: var(--ai); color: white; border-color: var(--ai); }
@media (max-width: 600px) {
  .review-card { min-width: 280px; max-width: 300px; padding: 20px; }
  /* cards keep their own height instead of stretching to the tallest
     in the row, and long quotes clamp to 7 lines (reviews.js truncates
     at 300 chars — too tall at this width; full text stays for SEO
     and the Read more toggle) */
  .reviews-grid { align-items: flex-start; }
  .review-card .review-truncated {
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 7; overflow: hidden;
  }
}

/* lightbox for review photos (markup injected by reviews.js) */
.photo-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; justify-content: center; align-items: center; cursor: default; }
.photo-lightbox.active { display: flex; }
.photo-lightbox img { max-width: 92vw; max-height: 90vh; width: 92vw; height: 90vh; border-radius: 8px; object-fit: contain; }
.photo-lightbox .lb-close { position: absolute; top: 16px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; opacity: 0.8; z-index: 10; background: none; border: none; padding: 0; line-height: 1; }
.photo-lightbox .lb-close:hover { opacity: 1; }
.photo-lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 40px; cursor: pointer; opacity: 0.7; user-select: none; padding: 16px; z-index: 10; background: none; border: none; line-height: 1; }
.photo-lightbox .lb-nav:hover { opacity: 1; }
.photo-lightbox .lb-prev { left: 12px; }
.photo-lightbox .lb-next { right: 12px; }
.photo-lightbox .lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; opacity: 0.7; }

/* ============ BOOKING (#book) ============ */
.book { background: var(--night); color: var(--on-night); }
.book .kicker { color: oklch(0.72 0.09 250); }
.book .kicker::before { background: oklch(0.72 0.09 250); }
.book h2 { color: var(--on-night); }
.book .section-lede { color: var(--on-night-dim); }
/* heading lives inside the left column so the widget card top-aligns
   with the "Pick a date" h2; columns stretch so the sticky panel can
   travel, while the widget card keeps its natural height */
.book-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: stretch; }
.book-grid .widget-col { align-self: start; }
.book .price-panel { margin-top: 40px; }

/* booking price panel — sticky on desktop so it tracks the tall
   Bokun calendar column instead of leaving a void below */
.price-panel { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 881px) {
  .price-panel { position: sticky; top: 100px; }
}
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.currency-row { display: flex; gap: 0; border: 1.5px solid var(--night-soft); border-radius: 5px; overflow: hidden; }
.currency-btn {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  background: transparent; color: var(--on-night-dim); border: none;
  padding: 8px 13px; cursor: pointer;
}
.currency-btn + .currency-btn { border-left: 1px solid var(--night-soft); }
.currency-btn[aria-pressed="true"] { background: var(--on-night); color: var(--night); }
.promo-line { font-size: 13px; font-weight: 700; color: var(--sale-dark); letter-spacing: 0.02em; }
.price-rows { border-top: 1px solid var(--night-soft); }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 2px; border-bottom: 1px solid var(--night-soft);
}
.price-row .p-label { font-size: 15px; font-weight: 600; }
.price-row .p-val { font-family: var(--font-display); font-size: 21px; font-weight: 600; display: flex; gap: 10px; align-items: baseline; white-space: nowrap; }
.price-row .p-val .per { font-family: var(--font-body); font-size: 12.5px; color: var(--on-night-dim); }
.price-row .sale-price { color: var(--sale-dark); }
.book-guarantees { font-size: 13.5px; color: var(--on-night-dim); margin-top: 18px; }
.book-fx { font-size: 12px; color: oklch(0.6 0.03 250); margin-top: 12px; }
.book-fx a { color: inherit; }

/* booking widget column — 2 variants via html[data-booking] */
.widget-col { background: white; color: var(--ink); border-radius: 10px; padding: 30px; box-shadow: 0 30px 80px -30px oklch(0.1 0.03 255 / 0.6); }
.widget-col h3 { font-size: 20px; font-weight: 600; }
.widget-col .w-sub { font-size: 13.5px; color: var(--mid); margin-top: 4px; }

/* variant A: inline availability calendar (real Bokun embed) */
.widget-inline { display: block; }
html[data-booking="popup"] .widget-inline { display: none; }
html[data-booking="popup"] .widget-popup { display: block; }
.widget-popup { display: none; }

/* Bokun draws its own panel borders — no extra frame, just space + a hairline */
.bokun-frame { margin-top: 18px; padding-top: 18px; position: relative; min-height: 520px; border-top: 1px solid var(--hair-soft); }
.bokun-frame .bokunWidget { position: relative; z-index: 1; }
.bokun-loading {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center;
  color: var(--mid); font-size: 14px;
}
.bokun-spinner {
  width: 28px; height: 28px; border: 3px solid var(--hair);
  border-top-color: var(--ai); border-radius: 50%;
  animation: bokunSpin 0.9s linear infinite;
}
@keyframes bokunSpin { to { transform: rotate(360deg); } }
.cal-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 12px; }

/* variant B: popup button card */
.widget-popup .pop-quote { margin: 22px 0; border-left: 3px solid var(--hair); padding-left: 16px; font-size: 14.5px; color: var(--ink-soft); font-style: italic; }
.widget-popup .pop-quote cite { display: block; font-style: normal; font-size: 12.5px; margin-top: 6px; color: var(--mid); }
.widget-popup .btn-book { width: 100%; }
.widget-popup .pop-alt { text-align: center; margin-top: 14px; font-size: 13.5px; }

/* ============ FAQ ============ */
.faq-list { margin-top: 44px; border-top: 1px solid var(--hair); }
.faq-list details { border-bottom: 1px solid var(--hair); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 22px 4px; font-family: var(--font-display); font-size: 18.5px; font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 24px; color: var(--ai); font-family: var(--font-body); font-weight: 400; flex-shrink: 0; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-a { padding: 0 4px 24px; font-size: 15.5px; color: var(--ink-soft); max-width: 70ch; }

/* ============ CONTACT + FOOTER ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.contact-card {
  background: white; border: 1px solid var(--hair); border-radius: 8px; padding: 13px 16px;
  text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 13px; min-height: 44px;
}
.contact-card .c-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .c-icon svg { width: 19px; height: 19px; }
.cc-wa .c-icon { background: oklch(0.95 0.04 150); color: oklch(0.55 0.15 150); }
.cc-mail .c-icon { background: var(--ai-tint); color: var(--ai); }
.cc-ig .c-icon { background: oklch(0.95 0.03 0); color: oklch(0.55 0.18 0); }
.contact-card .c-body { min-width: 0; }
.contact-card .c-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); display: block; }
.contact-card .c-val { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; margin-top: 1px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-card:hover { border-color: var(--ai); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 10px; } }

footer { border-top: 1px solid var(--hair); padding: 44px 0 56px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-inner img { height: 30px; }
.foot-links { display: flex; gap: 22px; font-size: 13.5px; flex-wrap: wrap; }
.foot-links a { color: var(--mid); text-decoration: none; }
.foot-links a:hover { color: var(--ai); }
.foot-copy { font-size: 12.5px; color: var(--mid); }

/* ============ MOBILE STICKY BOOKING BAR ============ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: white; border-top: 1px solid var(--hair);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px -12px oklch(0.3 0.05 255 / 0.35);
  transform: translateY(110%); transition: transform 0.25s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sb-price { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sb-from { font-size: 13.5px; color: var(--ink-soft); white-space: nowrap; }
.sb-from strong { font-family: var(--font-display); font-size: 19px; color: var(--ink); font-weight: 600; }
.sb-per { font-size: 12px; color: var(--mid); }
.sb-promo { font-size: 11.5px; font-weight: 700; color: var(--cta-deep); letter-spacing: 0.03em; }
.sticky-bar .btn-book { padding: 13px 22px; font-size: 15px; flex-shrink: 0; min-height: 44px; }
html[data-stickybar="off"] .sticky-bar { display: none !important; }
@media (max-width: 880px) {
  .sticky-bar { display: flex; }
}

@media (max-width: 880px) {
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
}

/* ============ MOBILE (≤600px) ============ */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 14px 0 52px; }

  /* booking-first first viewport: photo + essentials only
     (headline → rating → price → CTA); kicker hides, long copy drops
     below (visual order only — DOM/SEO unchanged) */
  .hero-photo { order: -1; }
  .hero-photo img { min-height: 0; aspect-ratio: 16/10; }
  .hero-grid { gap: 20px; }
  .hero-kicker { display: none; }
  .hero-copy { display: flex; flex-direction: column; }
  .hero-copy h1 { order: 1; }
  .hero-proof { order: 2; margin-top: 12px; font-size: 13px; }
  .hero-promo { order: 3; margin-top: 12px; }
  .hero-promo .promo-chip { font-size: 10px; letter-spacing: 0.08em; }
  .hero-promo .promo-chip .pc-off { padding: 3.5px 8px; }
  .hero-promo .promo-chip .pc-ends { padding: 3.5px 8px; }
  .hero-price-row { order: 4; margin-top: 6px; }
  .hero-ctas { order: 5; margin-top: 12px; gap: 12px; }
  .hero-sub { order: 6; margin-top: 22px; font-size: 16px; }
  .cta-micro { order: 7; }
  .hero h1 { font-size: 30px; }
  /* CTA: full-width but quieter */
  .hero-ctas .btn-book { font-size: 16px; padding: 13px 20px; }

  /* CTAs: full-width, stacked */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-ctas .btn-book { width: 100%; }
  .hero-ctas .btn-ghost { align-self: center; border-bottom: none; }
  .day-foot { flex-direction: column; align-items: stretch; gap: 14px; }
  .day-foot .btn-book { width: 100%; }
  .day-foot .btn-ghost { align-self: center; }
  .addons-how { justify-content: stretch; }
  .addons-how .btn-book { width: 100%; }

  /* touch targets ≥ 44px */
  .route-tab { padding: 12px 18px; }
  .currency-btn { padding: 13px 0; flex: 1; min-height: 44px; }
  .currency-row { width: 100%; }
  .panel-top { flex-direction: column; align-items: stretch; gap: 10px; }
  .promo-line { text-align: center; }

  /* widget card: reclaim width for the calendar */
  .widget-col { padding: 22px 18px; }
  .bokun-frame { min-height: 480px; }

  /* trust bar: tighter 2×2 */
  .trust-item { padding: 16px 12px; }
  .trust-item .t-big { font-size: 17px; }
  .trust-item .t-small { font-size: 12px; }

  /* density trims */
  .route-line { padding: 26px 22px; }
  .weather-quote { padding: 22px 20px; grid-template-columns: 1fr; gap: 6px; }
  .weather-quote .q-mark { font-size: 40px; }
  .price-row .p-val { font-size: 19px; }
  .hero-price-row .price { font-size: 30px; }
  .faq-list summary { font-size: 17px; }

  /* hero variants on mobile */
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip img { height: 180px; }
  .hero-strip img:first-child { height: 230px; }
  .hc-groups { grid-template-columns: repeat(3, 1fr); }
  .hc-group { padding: 12px 4px; }
}

/* ============ CHATBOT (Ask AI — wired to /api/chat) ============ */
.chatbot-toggle {
  position: fixed; bottom: 92px; right: 24px; z-index: 9999;
  height: 48px; border-radius: 24px; padding: 0 20px 0 16px;
  background: var(--ai); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 16px oklch(0.45 0.135 252 / 0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
}
.chatbot-toggle:hover { transform: scale(1.05); box-shadow: 0 6px 24px oklch(0.45 0.135 252 / 0.5); }
.chatbot-toggle svg { width: 22px; height: 22px; flex-shrink: 0; }
.chatbot-toggle .chat-label { white-space: nowrap; }
.chatbot-toggle .chat-close { display: none; }
.chatbot-toggle.active .chat-open { display: none; }
.chatbot-toggle.active .chat-label { display: none; }
.chatbot-toggle.active .chat-close { display: block; }
.chatbot-toggle.active { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

.chatbot-window {
  position: fixed; bottom: 148px; right: 24px; z-index: 9998;
  width: 380px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 188px);
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  display: none; flex-direction: column; overflow: hidden;
}
.chatbot-window.open { display: flex; animation: chatSlideUp 0.3s ease; }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.chatbot-header {
  background: var(--ai); color: #fff; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0; position: relative;
}
.chatbot-header-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; cursor: pointer; padding: 6px;
  opacity: 0.8; transition: opacity 0.2s; display: none;
}
.chatbot-header-close:hover { opacity: 1; }
.chatbot-header-close svg { width: 20px; height: 20px; }
.chatbot-header-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-header-icon svg { width: 20px; height: 20px; }
.chatbot-header-text h3 { font-size: 15px; font-weight: 600; margin: 0; font-family: var(--font-body); }
.chatbot-header-text p { font-size: 12px; opacity: 0.85; margin: 2px 0 0; }

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; word-break: break-word; }
.chat-msg.bot { background: var(--ai-tint); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--ai); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.bot ul, .chat-msg.bot ol { margin: 6px 0; padding-left: 18px; }
.chat-msg.bot li { margin: 3px 0; }
.chat-msg.bot strong { font-weight: 600; }
.chat-msg.bot a { color: var(--ai); text-decoration: underline; }

.chat-typing { align-self: flex-start; padding: 10px 18px; background: var(--ai-tint); border-radius: 14px; border-bottom-left-radius: 4px; display: flex; gap: 4px; }
.chat-typing span { width: 7px; height: 7px; background: #999; border-radius: 50%; animation: typeBounce 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typeBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

.chat-contact-card {
  background: var(--paper); border: 1px solid var(--hair); border-radius: 12px; padding: 14px; margin-top: 4px;
}
.chat-contact-card p { font-size: 13px; color: var(--mid); margin: 0 0 10px; }
.chat-contact-btns { display: flex; flex-direction: column; gap: 8px; }
.chat-contact-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: #fff; border: 1px solid var(--hair); border-radius: 8px;
  cursor: pointer; font-size: 13px; color: var(--ink); transition: border-color 0.2s;
  text-decoration: none;
}
.chat-contact-btn:hover { border-color: var(--ai); }
.chat-contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.chat-copy-area {
  margin-top: 10px; background: #fff; border: 1px solid var(--hair); border-radius: 8px; padding: 10px 12px;
  position: relative;
}
.chat-copy-area p { font-size: 12px; color: var(--mid); margin: 0 0 6px; font-weight: 500; }
.chat-copy-text { font-size: 13px; color: var(--ink); line-height: 1.5; margin: 0; }
.chat-copy-btn {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; padding: 5px 12px;
  background: var(--ai); color: #fff; border: none; border-radius: 6px;
  cursor: pointer; font-size: 12px; font-weight: 500; transition: background 0.2s;
}
.chat-copy-btn:hover { background: var(--ai-deep); }
.chat-copy-btn.copied { background: var(--ok); }

.chatbot-input {
  display: flex; padding: 12px 16px; border-top: 1px solid #eee; flex-shrink: 0; gap: 8px;
  background: #fff;
}
.chatbot-input input {
  flex: 1; border: 1px solid #ddd; border-radius: 24px; padding: 10px 16px;
  font-size: 14px; outline: none; font-family: inherit; transition: border-color 0.2s;
}
.chatbot-input input:focus { border-color: var(--ai); }
.chatbot-input button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ai); color: #fff;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.chatbot-input button:hover { background: var(--ai-deep); }
.chatbot-input button:disabled { opacity: 0.5; cursor: not-allowed; }
.chatbot-input button svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .chatbot-window {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    max-width: 100vw; max-height: none;
    border-radius: 0; z-index: 10000;
  }
  .chatbot-messages { padding: 12px; gap: 10px; }
  .chatbot-input {
    padding: 10px 12px; padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .chatbot-input input { padding: 10px 14px; font-size: 16px; }
  .chatbot-toggle { bottom: 92px; right: 16px; height: 44px; padding: 0 16px 0 12px; font-size: 13px; }
  .chatbot-toggle.active { display: none; width: 44px; height: 44px; padding: 0; }
  .chatbot-header-close { display: block; }
  .chat-msg { max-width: 90%; font-size: 14px; }
  .chat-contact-btns { flex-direction: row; flex-wrap: wrap; }
  .chat-contact-btn { flex: 1; min-width: 0; justify-content: center; padding: 10px 8px; font-size: 12px; }
  .chat-contact-btn svg { width: 16px; height: 16px; }
}

/* ============ ARTICLE / SUBPAGES (/about, guides) ============ */
.page-hero { padding: 52px 0 40px; border-bottom: 1px solid var(--hair-soft); }
.crumbs { font-size: 12.5px; color: var(--mid); margin-bottom: 18px; }
.crumbs a { color: var(--mid); text-decoration: none; }
.crumbs a:hover { color: var(--ai); }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; letter-spacing: -0.01em; max-width: 22ch; }
.page-hero .page-kicker { color: var(--ai); font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--font-body); }
.page-hero .page-kicker::before { content: ""; width: 28px; height: 1.5px; background: var(--ai); }
.page-hero .lede { margin-top: 16px; max-width: 62ch; color: var(--ink-soft); font-size: 17.5px; }
.article-section { padding: 52px 0 72px; }
.article { max-width: 760px; }
.article h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-top: 52px; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 19px; font-weight: 600; margin-top: 30px; }
.article p { margin-top: 14px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.75; }
.article ul, .article ol { margin: 14px 0 0; padding-left: 22px; color: var(--ink-soft); }
.article li { margin-top: 8px; line-height: 1.65; }
.article strong { color: var(--ink); }
.article a { color: var(--ai); }
.article figure { margin: 30px 0 0; }
.article figure img { border-radius: 6px; width: 100%; max-height: 600px; object-fit: cover; }
.article figcaption { font-size: 12.5px; color: var(--mid); margin-top: 8px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 15px; }
.info-table th, .info-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--hair-soft); vertical-align: top; color: var(--ink-soft); }
.info-table th { color: var(--ink); font-weight: 600; white-space: nowrap; }
.info-table thead th { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); border-bottom: 1.5px solid var(--hair); }
.pull-quote { margin: 34px 0 0; border-left: 3px solid var(--ai); padding: 4px 0 4px 20px; font-family: var(--font-display); font-size: 21px; font-style: italic; line-height: 1.5; color: var(--ink); }
.meta-stack { margin-top: 30px; background: white; border: 1px solid var(--hair); border-radius: 8px; padding: 6px 22px; }
.meta-stack .ms-row { display: flex; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--hair-soft); font-size: 14.5px; color: var(--ink-soft); }
.meta-stack .ms-row:last-child { border-bottom: none; }
.meta-stack .ms-k { width: 110px; flex-shrink: 0; font-weight: 700; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); padding-top: 3px; }
.cta-banner { background: var(--night); color: var(--on-night); border-radius: 10px; padding: 34px 34px; margin-top: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--on-night); font-size: 24px; margin: 0; font-family: var(--font-display); }
.cta-banner p { color: var(--on-night-dim); margin-top: 6px; font-size: 15px; max-width: 46ch; }
.next-links { margin-top: 56px; border-top: 1px solid var(--hair); padding-top: 26px; }
.next-links .nl-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); font-weight: 700; }
.next-links ul { list-style: none; padding: 0; margin: 14px 0 0; }
.next-links li { margin-top: 10px; }
.next-links a { font-family: var(--font-display); font-size: 18.5px; font-weight: 600; text-decoration: none; color: var(--ink); }
.next-links a:hover { color: var(--ai); }
@media (max-width: 600px) {
  .page-hero { padding: 36px 0 30px; }
  /* wide tables scroll inside themselves instead of stretching the page */
  .info-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .info-table th { white-space: normal; }
  .info-table th, .info-table td { font-size: 13.5px; padding: 9px 10px; min-width: 104px; }
  .cta-banner { padding: 26px 22px; }
  .cta-banner .btn-book { width: 100%; }
  .meta-stack .ms-row { flex-direction: column; gap: 3px; }
  .meta-stack .ms-k { width: auto; }
}

/* ============ GALLERY (/gallery) ============ */
.gallery-section { padding: 44px 0 72px; }
.gallery-grid { columns: 3 280px; column-gap: 14px; margin-top: 8px; }
.gallery-item {
  display: block; width: 100%; margin: 0 0 14px; border-radius: 6px; overflow: hidden;
  break-inside: avoid; cursor: zoom-in; background: var(--paper-deep);
  border: none; padding: 0; position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px;
  font-size: 12.5px; color: white; text-align: left;
  background: linear-gradient(transparent, rgba(20,28,45,0.72));
  opacity: 0; transition: opacity 0.25s ease;
}
.gallery-item:hover figcaption, .gallery-item:focus-visible figcaption { opacity: 1; }

/* story-style 9:16 row */
.story-row { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 18px; margin-top: 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.story-row::-webkit-scrollbar { display: none; }
.story-card {
  flex: 0 0 auto; width: 200px; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden;
  position: relative; cursor: zoom-in; border: none; padding: 0; background: var(--paper-deep);
}
.story-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 5px var(--ai);
}
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-card .story-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px 12px 12px; font-size: 12px; font-weight: 600; color: white; background: linear-gradient(transparent, rgba(20,28,45,0.7)); }

/* follow CTA */
.follow-cta { margin-top: 48px; text-align: center; background: var(--ai-tint); border: 1px solid oklch(0.89 0.03 250); border-radius: 12px; padding: 38px 28px; }
.follow-cta h2 { font-size: 26px; font-weight: 600; }
.follow-cta p { margin-top: 8px; color: var(--ink-soft); font-size: 15.5px; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  background: var(--ink); color: white; font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-ig:hover { transform: translateY(-1px); background: var(--ai-deep); color: white; }
.btn-ig svg { width: 20px; height: 20px; }

/* LP gallery teaser strip */
.gallery-teaser { background: var(--paper-deep); }
.gallery-teaser .teaser-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.gallery-teaser h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.gallery-teaser .teaser-link { font-weight: 600; font-size: 15px; white-space: nowrap; text-decoration: none; }
.gallery-teaser .teaser-link:hover { text-decoration: underline; }
.teaser-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.teaser-strip a { display: block; aspect-ratio: 1; border-radius: 6px; overflow: hidden; }
.teaser-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.teaser-strip a:hover img { transform: scale(1.06); }
@media (max-width: 760px) {
  .teaser-strip { grid-template-columns: repeat(3, 1fr); }
  .teaser-strip a:nth-child(n+7) { display: none; }
}

/* gallery lightbox (built by lp.js) */
.glb { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(12,16,28,0.92); align-items: center; justify-content: center; }
.glb.open { display: flex; }
.glb img { max-width: 92vw; max-height: 88vh; border-radius: 6px; object-fit: contain; }
.glb-cap { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 13.5px; text-align: center; max-width: 80vw; }
.glb-btn { position: absolute; background: none; border: none; color: white; cursor: pointer; opacity: 0.8; padding: 16px; line-height: 1; }
.glb-btn:hover { opacity: 1; }
.glb-close { top: 10px; right: 16px; font-size: 30px; }
.glb-nav { top: 50%; transform: translateY(-50%); font-size: 40px; }
.glb-prev { left: 8px; }
.glb-next { right: 8px; }
@media (max-width: 600px) { .glb-nav { font-size: 30px; padding: 12px; } }

/* ============ LP GUEST CAROUSEL (teaser) ============ */
.gallery-teaser { padding: 56px 0; }
.gallery-teaser .teaser-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.gallery-teaser .teaser-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.gallery-teaser .teaser-head .kicker { margin-bottom: 10px; }
.guest-carousel-wrap { position: relative; }
.guest-carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 2px 2px 6px;
  scroll-behavior: smooth;
}
.guest-carousel::-webkit-scrollbar { display: none; }
.guest-card {
  flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start;
  border-radius: 8px; overflow: hidden; position: relative; background: var(--paper-deep);
  cursor: zoom-in; border: none; padding: 0; aspect-ratio: 4/3;
}
.guest-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.guest-card:hover img { transform: scale(1.04); }
.guest-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 12px;
  font-size: 12.5px; font-weight: 600; color: white; text-align: left;
  background: linear-gradient(transparent, rgba(20,28,45,0.72));
}
.guest-nav { display: flex; gap: 8px; }
.guest-nav button {
  width: 38px; height: 38px; border: 1.5px solid var(--hair); background: white;
  border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}
.guest-nav button:hover { background: var(--ai); color: white; border-color: var(--ai); }
.teaser-foot { margin-top: 18px; text-align: center; }
.teaser-foot a { font-weight: 600; font-size: 15px; text-decoration: none; }
.teaser-foot a:hover { text-decoration: underline; }
@media (max-width: 900px) { .guest-nav { display: none; } .guest-card { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 600px) { .guest-card { flex-basis: 82%; } .gallery-teaser { padding: 44px 0; } }

/* tighten the reviews → guest-carousel gap (same bg, stacked padding read as one big blank) */
#reviews.section { padding-bottom: 28px; }
.gallery-teaser { padding-top: 40px; padding-bottom: 56px; }
