/* ============================================================
   MOWATT TOURS JA — style.css
   Hand-painted route-taxi signage × modern travel editorial.
   Pure white surface; color lives in the brand roles + photos.
   ============================================================ */

:root {
  /* surfaces & ink */
  --bg: oklch(1 0 0);
  --ink: oklch(0.24 0.02 220);
  --ink-soft: oklch(0.38 0.02 220);
  --line: oklch(0.9 0.005 220);

  /* brand roles */
  --sea: oklch(0.55 0.11 210);
  --sea-deep: oklch(0.32 0.06 220);
  --sea-bright: oklch(0.72 0.13 195);
  --palm: oklch(0.55 0.14 150);
  --palm-deep: oklch(0.42 0.11 155);
  --hibiscus: oklch(0.62 0.19 25);
  --hibiscus-deep: oklch(0.52 0.17 25);
  --sun: oklch(0.82 0.16 90);
  --sun-deep: oklch(0.68 0.14 80);
  --wa: #25d366;
  --wa-deep: #128c4a;

  /* tints for chips/cards */
  --sea-tint: oklch(0.96 0.02 210);
  --palm-tint: oklch(0.96 0.03 150);
  --hibiscus-tint: oklch(0.96 0.025 25);
  --sun-tint: oklch(0.97 0.04 95);

  /* type */
  --font-display: "Bricolage Grotesque", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-note: "Caveat", "Bradley Hand", cursive;

  /* rhythm */
  --space-section: clamp(4.5rem, 10vw, 8rem);
  --wrap: 72rem;
  --radius: 1.1rem;
  --radius-lg: 1.6rem;

  /* z scale */
  --z-ticker: 1;
  --z-nav: 40;
  --z-menu: 50;
  --z-float: 45;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 0 0.6em;
  font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.015em; }

p { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }

a { color: var(--sea); text-underline-offset: 3px; }
a:hover { color: var(--sea-deep); }

::selection { background: var(--sun); color: var(--ink); }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

section { padding-block: var(--space-section); }
section.tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* handwritten margin note — the site's kicker system */
.note {
  font-family: var(--font-note);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: 0;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0.4rem;
}
.note--palm { color: var(--palm-deep); }
.note--sea { color: var(--sea); }
.note--hibiscus { color: var(--hibiscus-deep); }
.note--sun { color: var(--sun-deep); }
.note--white { color: oklch(0.93 0.05 95); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background-color 0.2s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--hibiscus); color: #fff; }
.btn-primary:hover { background: var(--hibiscus-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--hibiscus); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -12px var(--wa-deep); }

.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgb(0 0 0 / 0.5); }

.btn .wa-glyph { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.wordmark {
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
}
.wordmark .logo {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  flex: none;
  margin-right: 0.25rem;
  align-self: center;
}
.wordmark .logo--chip {
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.15rem;
}
.footer-logo {
  width: 5.2rem;
  height: 5.2rem;
  object-fit: contain;
  background: #fff;
  border-radius: 1rem;
  padding: 0.45rem;
  margin-bottom: 0.9rem;
}
.wordmark .tours { letter-spacing: 0.01em; }
.wordmark .tours b:nth-child(1) { color: var(--palm); }
.wordmark .tours b:nth-child(2) { color: var(--sun-deep); }
.wordmark .tours b:nth-child(3) { color: var(--sea); }
.wordmark .tours b:nth-child(4) { color: var(--hibiscus); }
.wordmark .tours b:nth-child(5) { color: var(--sea-bright); }
.wordmark .ja {
  font-family: var(--font-note);
  font-size: 1.05rem;
  color: var(--ink-soft);
  transform: rotate(-4deg);
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--sun); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--hibiscus); }

.nav-cta { margin-left: 0.4rem; padding: 0.7rem 1.2rem; font-size: 0.95rem; }

.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  margin-block: 5px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

/* mobile menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--sea-deep);
  color: #fff;
  display: none;
  flex-direction: column;
  padding: 1.2rem clamp(1.1rem, 5vw, 2rem) 2rem;
}
.menu.open { display: flex; }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-close { background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: 0.3rem; }
.menu nav { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2.2rem; }
.menu nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  letter-spacing: -0.02em;
  padding-block: 0.35rem;
}
.menu nav a small {
  font-family: var(--font-note);
  font-weight: 600;
  font-size: 1.2rem;
  margin-left: 0.7rem;
  color: var(--sun);
}
.menu .btn { margin-top: auto; justify-content: center; }

/* ---------- hero ---------- */

.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 { margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--hibiscus); }

.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.hero-trust {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-trust li { display: flex; align-items: center; gap: 0.45rem; }
.hero-trust li::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  flex: none;
}
.hero-trust li:nth-child(1)::before { background: var(--palm); }
.hero-trust li:nth-child(2)::before { background: var(--sea); }
.hero-trust li:nth-child(3)::before { background: var(--sun-deep); }

/* snapshot collage */
.collage {
  position: relative;
  min-height: clamp(20rem, 42vw, 30rem);
}
.polaroid {
  position: absolute;
  background: #fff;
  padding: 0.55rem 0.55rem 2.3rem;
  box-shadow: 0 14px 34px -14px rgb(10 30 40 / 0.45);
  border-radius: 4px;
}
.polaroid img { border-radius: 2px; object-fit: cover; width: 100%; height: 100%; }
.polaroid figcaption {
  font-family: var(--font-note);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink-soft);
  position: absolute;
  bottom: 0.35rem;
  left: 0.75rem;
  right: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
}
.polaroid::before {
  /* tape */
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  width: 5.5rem;
  height: 1.5rem;
  transform: translateX(-50%) rotate(-3deg);
  background: oklch(0.9 0.09 95 / 0.75);
  border-radius: 2px;
}
.collage .p1 { width: 62%; aspect-ratio: 4/3.4; left: 0; top: 4%; transform: rotate(-3.5deg); z-index: 2; }
.collage .p2 { width: 47%; aspect-ratio: 3.6/4.4; right: 0; top: 0; transform: rotate(2.5deg); z-index: 1; }
.collage .p3 { width: 52%; aspect-ratio: 4/3.5; right: 6%; bottom: 0; transform: rotate(4deg); z-index: 3; }
.polaroid { transition: transform 0.35s var(--ease-out); }
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 5; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--sun);
  color: var(--ink);
  overflow: hidden;
  padding-block: 0.7rem;
  z-index: var(--z-ticker);
  border-block: 2px solid var(--ink);
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span { display: inline-flex; gap: 2.5rem; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- category bento ---------- */

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(9.5rem, auto);
}
.cat {
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.cat:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -16px rgb(10 30 40 / 0.35); color: var(--ink); }
.cat h3 { margin-bottom: 0.15em; }
.cat p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); max-width: 30ch; }
.cat .go {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-weight: 800;
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease-out);
}
.cat:hover .go { transform: translateX(4px); }
.cat-emoji { font-size: 1.9rem; margin-bottom: auto; }

.cat--palm { background: var(--palm-tint); border-color: var(--palm); }
.cat--sea { background: var(--sea-tint); border-color: var(--sea); }
.cat--sun { background: var(--sun-tint); border-color: var(--sun-deep); }
.cat--hibiscus { background: var(--hibiscus-tint); border-color: var(--hibiscus); }
.cat--deep { background: var(--sea-deep); border-color: var(--sea-deep); color: #fff; }
.cat--deep p { color: oklch(0.85 0.03 220); }
.cat--deep:hover { color: #fff; }

.cat--wide { grid-column: span 4; }
.cat--std { grid-column: span 2; }
.cat--half { grid-column: span 3; }

/* ---------- tour cards ---------- */

.tour-cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tour-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -20px rgb(10 30 40 / 0.4); color: var(--ink); }
.tour-card .photo { aspect-ratio: 16/10.5; overflow: hidden; position: relative; }
.tour-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.tour-card:hover .photo img { transform: scale(1.05); }
.tour-card .body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.tour-card h3 { margin: 0; }
.tour-card .hook { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }
.tour-card .meta {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.tour-card .meta .view { color: var(--hibiscus-deep); }
.tour-card:hover .meta .view { text-decoration: underline; text-underline-offset: 3px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}
.chip--palm { background: var(--palm-tint); color: var(--palm-deep); }
.chip--sea { background: var(--sea-tint); color: var(--sea); }
.chip--sun { background: var(--sun-tint); color: var(--sun-deep); }
.chip--hibiscus { background: var(--hibiscus-tint); color: var(--hibiscus-deep); }
.chip--photo {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
}

/* ---------- drenched band (authentic Jamaica / footer-adjacent) ---------- */

.band-deep { background: var(--sea-deep); color: #fff; }
.band-deep h2, .band-deep h3 { color: #fff; }
.band-deep p { color: oklch(0.88 0.02 220); line-height: 1.72; }
.band-deep a:not(.btn) { color: var(--sun); }

.mosaic {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(7rem, 15vw, 11rem);
  grid-auto-flow: dense;
}
.mosaic figure { margin: 0; border-radius: 0.8rem; overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.4rem 0.9rem 0.6rem;
  font-family: var(--font-note);
  font-weight: 600;
  font-size: 1.12rem;
  color: #fff;
  background: linear-gradient(transparent, rgb(5 20 30 / 0.75));
}
.mosaic .m-wide { grid-column: span 2; }
.mosaic .m-tall { grid-row: span 2; }

/* ---------- why us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.why-list { display: grid; gap: 1.6rem; }
.why-item { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: start; }
.why-item .dot {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.why-item:nth-child(1) .dot { background: var(--palm-tint); }
.why-item:nth-child(2) .dot { background: var(--sea-tint); }
.why-item:nth-child(3) .dot { background: var(--sun-tint); }
.why-item:nth-child(4) .dot { background: var(--hibiscus-tint); }
.why-item h3 { margin-bottom: 0.2em; }
.why-item p { margin: 0; color: var(--ink-soft); }

.owner-quote {
  margin: 1.4rem 0 0;
  padding: 0;
}
.owner-quote blockquote {
  margin: 0;
  font-family: var(--font-note);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--ink);
}
.owner-quote cite { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- reviews ---------- */

.reviews {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.review {
  background: var(--sun-tint);
  border: 2px solid var(--sun);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem;
  margin: 0;
}
.review blockquote { margin: 0 0 0.9rem; font-weight: 600; font-size: 1.12rem; line-height: 1.5; }
.review cite { font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); }
.review .stars { color: var(--sun-deep); letter-spacing: 0.12em; margin-bottom: 0.5rem; font-size: 0.95rem; }

/* ---------- destinations ---------- */

.dest-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
.dest {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.dest:hover img { transform: scale(1.05); }
.dest .veil { position: absolute; inset: 0; background: linear-gradient(185deg, transparent 30%, rgb(5 20 30 / 0.8)); }
.dest .body { position: relative; padding: 1.6rem 1.7rem; }
.dest h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.15em; }
.dest p { color: oklch(0.9 0.02 220); margin: 0; font-size: 0.98rem; max-width: 40ch; }
.dest .go { font-weight: 800; color: var(--sun); margin-top: 0.5rem; display: inline-block; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 0.8rem; max-width: 50rem; }
details.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  overflow: hidden;
}
details.faq[open] { border-color: var(--sea); }
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  list-style: none;
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sea);
  transition: transform 0.25s var(--ease-out);
}
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.faq .a { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
details.faq .a p { margin-bottom: 0.6em; }

/* ---------- planner form ---------- */

.band-sun { background: var(--sun); }
.band-sun h2 { color: var(--ink); }
.band-sun .lede { color: oklch(0.35 0.05 90); font-weight: 600; }

.planner {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
  max-width: 46rem;
}
.planner .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: 0.94rem; }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1.5px solid oklch(0.75 0.01 220);
  border-radius: 0.7rem;
  background: #fff;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.45 0.02 220); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--sea-bright);
  outline-offset: 1px;
  border-color: var(--sea);
}
.interest-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.2rem; }
.interest-row input { position: absolute; opacity: 0; pointer-events: none; }
.interest-row label {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.interest-row input:checked + label { background: var(--ink); color: #fff; }
.interest-row input:focus-visible + label { outline: 3px solid var(--sea-bright); }
.planner .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.planner .hint { font-size: 0.88rem; color: var(--ink-soft); margin: 0.8rem 0 0; }

/* ---------- big CTA band (tour pages) ---------- */

.cta-band { background: var(--sea-deep); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { margin-inline: auto; color: oklch(0.88 0.02 220); }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.6rem; }

/* ---------- tour detail pages ---------- */

.crumbs { font-size: 0.9rem; font-weight: 600; padding-top: 1.2rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.crumbs li + li::before { content: "→"; margin-right: 0.4rem; color: var(--ink-soft); }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--sea); text-decoration: underline; }

.tour-hero { padding-block: clamp(1.5rem, 4vw, 3rem) 0; }
.tour-hero .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-top: 1.8rem;
}
.tour-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero .lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 46rem; }
.tour-hero .top-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-block: 2.2rem;
}
.facts > div { background: #fff; padding: 1.1rem 1.2rem; }
.facts dt { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); margin: 0 0 0.25rem; }
.facts dd { margin: 0; font-weight: 700; font-size: 1.02rem; }

.tour-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tour-body aside { position: sticky; top: 5.5rem; display: grid; gap: 1.4rem; }
.aside-card { border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.4rem; box-shadow: 0.4rem 0.4rem 0 var(--sun); background: #fff; }
.aside-card h3 { margin-bottom: 0.6rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.aside-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* day timeline — a real sequence, so numbers/ordering is earned */
.timeline { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0; }
.timeline li { display: grid; grid-template-columns: 6rem 1fr; gap: 1.2rem; padding-block: 0.9rem; border-bottom: 1px dashed var(--line); }
.timeline li:last-child { border-bottom: 0; }
.timeline .t { font-weight: 800; color: var(--sea); white-space: nowrap; }
.timeline .d { color: var(--ink-soft); }
.timeline .d strong { color: var(--ink); }

.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.2rem; }
.check-list { list-style: none; padding: 0; margin: 0.6rem 0 0; display: grid; gap: 0.5rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: baseline; color: var(--ink-soft); }
.check-list.yes li::before { content: "✓"; color: var(--palm); font-weight: 800; }
.check-list.no li::before { content: "✕"; color: var(--hibiscus); font-weight: 800; }
.check-list.dot li::before { content: "•"; color: var(--sea); font-weight: 800; }

.best-for { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }

/* ---------- gallery strip ---------- */

.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-block: 0.5rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip figure { margin: 0; flex: 0 0 min(70vw, 22rem); scroll-snap-align: start; }
.gallery-strip img { border-radius: 0.9rem; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-strip figcaption { font-family: var(--font-note); font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* ---------- footer ---------- */

footer.site {
  background: var(--sea-deep);
  color: oklch(0.88 0.02 220);
  padding-block: 3.5rem 6.5rem;
  margin-top: var(--space-section);
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
footer.site h4 { color: #fff; font-size: 1rem; margin-bottom: 0.8rem; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
footer.site a { color: oklch(0.88 0.02 220); text-decoration: none; }
footer.site a:hover { color: var(--sun); text-decoration: underline; }
footer.site .wordmark { color: #fff; }
footer.site .wordmark .ja { color: var(--sun); }
footer.site .tag { font-family: var(--font-note); font-weight: 600; font-size: 1.3rem; color: var(--sun); margin: 0.5rem 0 1rem; }
footer.site .fine { border-top: 1px solid oklch(0.42 0.04 220); margin-top: 2.5rem; padding-top: 1.4rem; font-size: 0.88rem; color: oklch(0.75 0.02 220); display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; }
footer.site .pay { font-size: 0.9rem; }

/* ---------- floating WhatsApp + mobile bar ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: var(--z-float);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -10px rgb(0 0 0 / 0.45);
  transition: transform 0.25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 1.9rem; height: 1.9rem; }

.mobile-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-float);
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.mobile-bar .btn { flex: 1; justify-content: center; padding: 0.85rem 1rem; }

/* ---------- reveal motion ---------- */
/* Content is fully visible by default; .in adds a one-shot entrance animation.
   Nothing is ever gated on the animation firing. */

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
}
.anim .reveal.in { animation: rise 0.7s var(--ease-out) backwards; }
.anim .reveal.in.d1 { animation-delay: 0.08s; }
.anim .reveal.in.d2 { animation-delay: 0.16s; }
.anim .reveal.in.d3 { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim .reveal.in { animation: none; }
  .ticker-track { animation: none; }
  .polaroid, .tour-card, .dest img, .cat, .btn { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .collage { min-height: clamp(19rem, 78vw, 26rem); margin-top: 0.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .tour-body { grid-template-columns: 1fr; }
  .tour-body aside { position: static; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cat--wide, .cat--std, .cat--half { grid-column: span 1; }
  .cat--wide { grid-column: span 2; }
}

@media (max-width: 700px) {
  .dest-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .check-cols { grid-template-columns: 1fr; }
  .planner .grid2 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 4.6rem; }
  footer.site { padding-bottom: 3rem; }
  .tour-hero .photo { aspect-ratio: 4/3; }
  .timeline li { grid-template-columns: 4.6rem 1fr; gap: 0.8rem; }
}

@media (max-width: 460px) {
  .bento { grid-template-columns: 1fr; }
  .cat--wide { grid-column: span 1; }
  footer.site .cols { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
