/* YORIMICHI — small-group Japan tours, departing Singapore.
   Night indigo, one vermilion, photography full-bleed. One face, Nunito,
   for display and body. Motion is one reveal on entry; everything else
   responds to a click or a key. */

:root {
  --ink-900: #0B0F1A;
  --ink-800: #111726;
  --ink-700: #182033;
  --ink-600: #222B40;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .24);
  --text: #F3F1EC;
  --muted: #9AA3B5;
  --dim: #6B7386;
  --shu: #E4512B;
  --shu-hover: #F06A45;
  --gold: #D9A441;
  --ok: #4FB286;
  --font-display: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --max: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--shu); color: #fff; }
:focus-visible { outline: 2px solid var(--shu); outline-offset: 3px; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--shu); color: #fff; padding: 10px 14px; border-radius: var(--radius);
}
.skip:focus { top: 16px; }

.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type scale ---------- */
.display, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
}
.h1 { font-size: clamp(40px, 7.2vw, 104px); }
.h2 { font-size: clamp(30px, 4.2vw, 56px); }
.h3 { font-size: clamp(20px, 2vw, 26px); }
.kicker {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.kicker--shu { color: var(--shu); }
.kicker::before {
  content: ''; display: inline-block; width: 8px; height: 8px;
  background: var(--shu); margin-right: 10px; vertical-align: 1px;
}
.kicker--plain::before { display: none; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  background: var(--shu); color: #fff; transition: background .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--shu-hover); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, .06); }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn svg { width: 16px; height: 16px; }
.more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding-bottom: 6px; position: relative;
}
.more::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 40px;
  background: var(--shu); transition: width .3s var(--ease);
}
.more:hover::after { width: 100%; }
.more svg { width: 14px; height: 14px; }

/* ---------- reveal on entry (the one motion) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- header ---------- */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 72px; padding-inline: var(--gutter);
  background: linear-gradient(to bottom, rgba(11, 15, 26, .78), rgba(11, 15, 26, .55));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.mark {
  display: inline-flex; align-items: center; gap: 10px; justify-self: start;
  font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.mark i { width: 12px; height: 12px; background: var(--shu); display: inline-block; }
.mark small { font-family: var(--font-body); font-size: 10px; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
.nav { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); padding: 6px 0; position: relative; transition: color .2s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--shu);
}
.top__actions { display: flex; gap: 6px; justify-self: end; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  color: var(--text); transition: background .2s;
}
.icon-btn:hover { background: rgba(255, 255, 255, .08); }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }
.burger span, .burger span::before, .burger span::after {
  display: block; width: 22px; height: 2px; background: currentColor; position: relative; transition: transform .25s var(--ease), opacity .2s;
}
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* search bar drops below the header */
.search {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 49;
  background: var(--ink-800); border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
}
.search[hidden] { display: none; }
.search form { display: flex; gap: 10px; max-width: 720px; margin-inline: auto; }
.search input {
  flex: 1; background: var(--ink-900); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 12px 14px; color: var(--text); min-width: 0;
}
.search input::placeholder { color: var(--dim); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 48; background: var(--ink-900);
  padding: 96px var(--gutter) 40px; display: none; flex-direction: column; gap: 8px;
}
.drawer[data-open="true"] { display: flex; }
.drawer a {
  font-family: var(--font-display); font-size: clamp(32px, 9vw, 50px); font-weight: 800; text-transform: uppercase; line-height: 1.05;
  padding: 6px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
}
.drawer a[aria-current="page"] { color: var(--shu); }
.drawer a span { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; color: var(--muted); }
.drawer__foot { margin-top: auto; color: var(--muted); font-size: 14px; display: grid; gap: 4px; }
.drawer__foot strong { color: var(--text); }

/* ---------- hero slider ---------- */
.hero { position: relative; background: var(--ink-900); }
.hero__stage { position: relative; height: 100svh; min-height: 640px; max-height: 1040px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); }
.slide[aria-hidden="false"] { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11, 15, 26, .78) 0%, rgba(11, 15, 26, .35) 45%, rgba(11, 15, 26, .1) 100%),
    linear-gradient(to top, rgba(11, 15, 26, 1) 0%, rgba(11, 15, 26, .97) 6%, rgba(11, 15, 26, .9) 12%, rgba(11, 15, 26, .78) 18%,
      rgba(11, 15, 26, .6) 26%, rgba(11, 15, 26, .4) 34%, rgba(11, 15, 26, .26) 42%, rgba(11, 15, 26, .2) 50%, rgba(11, 15, 26, .25) 100%);
}
.hero__copy {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter);
  top: 50%; transform: translateY(-52%);
  width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto;
  padding-right: 120px;
}
.hero__title { display: block; margin: 12px 0 18px; font-weight: 900; }
.hero__title span { display: block; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.hero__meta p { color: var(--muted); font-size: 15px; }
.hero__meta p strong { color: var(--text); font-weight: 600; }
.hero__index {
  position: absolute; z-index: 3; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.hero__index button {
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--dim);
  display: flex; align-items: center; gap: 12px; padding: 4px 0; transition: color .2s, font-size .2s;
}
.hero__index button::after { content: ''; width: 0; height: 1px; background: var(--text); transition: width .3s var(--ease); }
.hero__index button[aria-current="true"] { color: var(--text); font-size: 22px; font-weight: 800; }
.hero__index button[aria-current="true"]::after { width: 56px; }
.hero__index button:hover { color: var(--text); }
.hero__arrows { position: absolute; z-index: 3; right: var(--gutter); bottom: 200px; display: flex; gap: 6px; }
.hero__arrows .icon-btn { box-shadow: inset 0 0 0 1px var(--line-strong); }

/* three-column strip at the foot of the hero */
.hero__strip {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
}
.strip {
  width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  border-top: 1px solid var(--line-strong); padding: 22px 0 28px;
}
.strip__item { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.strip__item svg { width: 22px; height: 22px; color: var(--shu); margin-top: 2px; }
.strip__item p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.strip__item p strong { color: var(--text); font-weight: 600; }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section__head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head .kicker { display: block; margin-bottom: 10px; }
.section__head--left { text-align: left; }
.section__head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; text-align: left; flex-wrap: wrap; }

/* popular tours */
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tcard { display: block; position: relative; }
.tcard__media { aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: var(--ink-800); }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tcard:hover .tcard__media img { transform: scale(1.04); }
.tcard__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 15, 26, .75), transparent 45%); }
.tcard__tag {
  position: absolute; top: 12px; left: 12px; z-index: 1; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(11, 15, 26, .7); padding: 6px 9px; border-radius: 2px; font-weight: 600;
}
.tcard__tag--shu { background: var(--shu); }
.tcard__body { padding: 16px 4px 0; text-align: center; }
.tcard__body .h3 { font-size: 21px; }
.tcard__body p { color: var(--muted); font-size: 13px; margin-top: 6px; }
.tcard__body p + p { margin-top: 2px; }
.tcard__body p strong { color: var(--text); }
.tgrid__foot { display: flex; justify-content: center; margin-top: 40px; }

/* film band */
.film { position: relative; min-height: 96vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.film__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.06); will-change: transform; }
/* the live sky: a canvas of twinkling stars over the photograph, under the fades */
.film__sky { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; transform: scale(1.06); will-change: transform; }
.film::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  /* eased, not linear: no visible start line where the fade begins */
  background: linear-gradient(to bottom,
    rgba(11, 15, 26, 1) 0%, rgba(11, 15, 26, .985) 6%, rgba(11, 15, 26, .94) 12%, rgba(11, 15, 26, .86) 18%,
    rgba(11, 15, 26, .74) 24%, rgba(11, 15, 26, .6) 30%, rgba(11, 15, 26, .47) 36%, rgba(11, 15, 26, .38) 42%,
    rgba(11, 15, 26, .33) 50%, rgba(11, 15, 26, .38) 62%, rgba(11, 15, 26, .55) 72%, rgba(11, 15, 26, .76) 82%,
    rgba(11, 15, 26, .92) 91%, rgba(11, 15, 26, 1) 100%);
}
.film__grid {
  width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
  padding-block: clamp(160px, 26vw, 360px) clamp(48px, 7vw, 96px);
}
.film__title { font-size: clamp(36px, 5.4vw, 80px); }
.play { display: inline-flex; align-items: center; gap: 16px; margin-top: 28px; }
.play__ring {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1.5px var(--text); transition: background .2s, transform .2s var(--ease);
}
.play:hover .play__ring { background: var(--shu); box-shadow: inset 0 0 0 1.5px var(--shu); }
.play__ring svg { width: 18px; height: 18px; margin-left: 3px; }
.play__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.play__label small { display: block; color: var(--muted); letter-spacing: .1em; font-weight: 500; margin-top: 2px; }
.film__note { color: var(--muted); font-size: 14px; max-width: 42ch; margin-top: 36px; }
.film__chapters { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chapter { text-align: left; display: grid; gap: 10px; }
.chapter__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-800); }
.chapter__thumb img { width: 100%; height: 100%; object-fit: cover; }
.chapter__thumb::after {
  content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}
.chapter__play {
  position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(11, 15, 26, .6);
  box-shadow: inset 0 0 0 1.5px var(--text); display: grid; place-items: center; transition: background .2s;
}
.chapter__play svg { width: 14px; height: 14px; margin-left: 2px; }
.chapter:hover .chapter__play { background: var(--shu); box-shadow: inset 0 0 0 1.5px var(--shu); }
.chapter__cap { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.chapter__cap strong { color: var(--text); font-weight: 600; margin-right: 8px; }

/* video dialog */
dialog { border: 0; padding: 0; background: transparent; color: var(--text); max-width: none; max-height: none; }
dialog::backdrop { background: rgba(4, 6, 12, .9); }
.vmodal { width: min(96vw, 1100px); margin: auto; }
.vmodal__frame { background: #000; aspect-ratio: 16 / 9; }
.vmodal__frame video { width: 100%; height: 100%; }
.vmodal__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 2px; flex-wrap: wrap; }
.vmodal__bar .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  padding: 8px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-strong); color: var(--muted);
  transition: color .2s, background .2s;
}
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] { background: var(--shu); box-shadow: none; color: #fff; }

/* how we travel */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how__item { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.how__item .n { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--shu); line-height: 1; }
.how__item h3 { font-size: 20px; margin: 10px 0 8px; }
.how__item p { color: var(--muted); font-size: 15px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(40px, 6vw, 72px); }
.stat { background: var(--ink-800); padding: 22px 22px 20px; border-radius: var(--radius); }
.stat b { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; display: block; margin-top: 8px; }

/* departures table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl th, .tbl td { position: relative; text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
.tbl th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tbl td { font-size: 15px; }
.tbl td.date { font-family: var(--font-display); font-size: 17px; font-weight: 800; }
.tbl td.date small { display: block; font-family: var(--font-body); font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.tbl tr:hover td { background: rgba(255, 255, 255, .025); }
.tbl .tname { font-weight: 600; }
.tbl .tname small { display: block; color: var(--muted); font-weight: 400; font-size: 13px; }
.seats { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; }
.seats::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.seats--low::before { background: var(--gold); }
.seats--out::before { background: var(--dim); }
.seats--out { color: var(--muted); }
.price { font-weight: 600; }
.price small { color: var(--muted); font-weight: 400; margin-left: 4px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review { background: var(--ink-800); padding: 28px; border-radius: var(--radius); display: grid; gap: 14px; }
.stars { display: flex; gap: 3px; color: var(--shu); }
.stars svg { width: 14px; height: 14px; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.55; font-weight: 500; }
.review cite { font-style: normal; color: var(--muted); font-size: 13px; }
.review cite strong { color: var(--text); display: block; font-size: 14px; }

/* gallery peek */
.peek { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 12px; }
.peek a { position: relative; overflow: hidden; background: var(--ink-800); display: block; }
.peek a::after { content: ''; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(to top, rgba(11, 15, 26, .8), transparent); pointer-events: none; }
.peek figcaption { z-index: 1; }
.peek figure { margin: 0; height: 100%; }
.peek a:first-child { grid-row: span 2; }
.peek img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.peek a:hover img { transform: scale(1.04); }
.peek figcaption {
  position: absolute; left: 14px; bottom: 12px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}

/* CTA band */
.cta { background: linear-gradient(to bottom, var(--ink-900) 0%, rgba(17, 23, 38, .55) 18%, var(--ink-800) 40%, var(--ink-800) 60%, rgba(17, 23, 38, .55) 82%, var(--ink-900) 100%); }
.cta__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.cta__list { display: grid; gap: 14px; }
.cta__list li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 15px; }
.cta__list li span:first-child { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding-top: 3px; }
.cta__list a { color: var(--text); border-bottom: 1px solid var(--line-strong); }
.cta__list a:hover { border-color: var(--shu); }

/* footer */
.foot { padding: clamp(48px, 6vw, 80px) 0 32px; border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.foot li { margin-bottom: 8px; font-size: 14px; }
.foot li a:hover { color: var(--shu); }
.foot__brand p { color: var(--muted); font-size: 14px; max-width: 34ch; margin-top: 12px; }
.foot__legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--dim); font-size: 12px; }

/* ---------- inner pages ---------- */
.phero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.phero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.phero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(11, 15, 26, 1) 0%, rgba(11, 15, 26, .97) 7%, rgba(11, 15, 26, .9) 14%, rgba(11, 15, 26, .8) 22%,
    rgba(11, 15, 26, .68) 32%, rgba(11, 15, 26, .56) 44%, rgba(11, 15, 26, .45) 60%, rgba(11, 15, 26, .35) 100%);
}
.phero__inner { padding: 150px 0 56px; }
.phero__inner .kicker { display: block; margin-bottom: 10px; }
.phero__inner .h1 { font-size: clamp(36px, 6.4vw, 92px); }
.phero__inner .lede { margin-top: 14px; }

/* filters (tours + gallery) */
.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; padding: 18px 0; border-block: 1px solid var(--line); margin-bottom: 32px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field select, .field input, .field textarea {
  background: var(--ink-800); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 11px 12px; color: var(--text); min-width: 0; width: 100%;
}
.field select { padding-right: 32px; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239AA3B5' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.field textarea { min-height: 120px; resize: vertical; }
.filters .field { min-width: 150px; }
.filters .field--grow { flex: 1 1 200px; }
.filters .field--btn { align-self: end; }
.results { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.results strong { color: var(--text); }

/* tour rows */
.trows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.trow { display: grid; grid-template-columns: 42% 1fr; background: var(--ink-800); border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.trow__media { position: relative; overflow: hidden; }
.trow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.trow:hover .trow__media img { transform: scale(1.03); }
.trow__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.trow__body .h3 { font-size: 24px; }
.trow__route { color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.trow__tag { color: var(--text); font-size: 15px; }
.facts-inline { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: var(--muted); margin-top: auto; }
.facts-inline strong { color: var(--text); font-weight: 600; }
.trow__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.trow__foot .price { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.trow__foot .price small { font-family: var(--font-body); font-size: 12px; }
.empty { padding: 48px 0; color: var(--muted); text-align: center; }

/* tour detail */
.facts { display: grid; grid-template-columns: repeat(5, 1fr); border-block: 1px solid var(--line); }
.facts div { padding: 20px 18px 18px; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.facts b { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.facts b small { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0; margin-left: 4px; }
.detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.detail__main { display: grid; gap: clamp(40px, 5vw, 64px); }
.block h2 { margin-bottom: 18px; }
.block .h2 { font-size: clamp(26px, 3.2vw, 40px); }
.hl { display: grid; gap: 10px; }
.hl li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; font-size: 16px; }
.hl li::before { content: ''; width: 8px; height: 8px; background: var(--shu); margin-top: 9px; }
.days { display: grid; }
.day { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.day:last-child { border-bottom: 1px solid var(--line); }
.day .d { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--shu); line-height: 1; }
.day .d small { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.day h3 { font-size: 18px; margin-bottom: 4px; }
.day p { color: var(--muted); font-size: 15px; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.incl li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 15px; margin-bottom: 8px; }
.incl li svg { width: 16px; height: 16px; margin-top: 4px; }
.incl--yes li svg { color: var(--ok); }
.incl--no li svg { color: var(--dim); }
.tgal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tgal figure { margin: 0; }
.tgal img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; height: auto; }
.tgal figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; letter-spacing: .04em; }

/* booking panel */
.book { background: var(--ink-800); border-radius: var(--radius); padding: 26px; display: grid; gap: 16px; }
.book__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.book__head .h3 { font-size: 22px; }
.book__from { color: var(--muted); font-size: 13px; }
.book__from b { color: var(--text); font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.book .field select, .book .field input { background: var(--ink-900); }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.check input { margin: 5px 0 0; accent-color: var(--shu); }
.check small { display: block; color: var(--muted); }
.total { border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 6px; }
.total__line { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.total__sum { display: flex; justify-content: space-between; align-items: baseline; }
.total__sum b { font-family: var(--font-display); font-size: 30px; font-weight: 800; }
.total__sum span { color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.book__note { color: var(--muted); font-size: 12px; line-height: 1.5; }
.book .btn { justify-content: center; }
.book__done { display: grid; gap: 10px; }
.book__done .ref { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--shu); }
.deps { display: grid; gap: 0; }
.dep { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.dep:last-child { border-bottom: 1px solid var(--line); }
.dep .date { font-family: var(--font-display); font-size: 17px; font-weight: 800; }
.dep .date small { display: block; font-family: var(--font-body); font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.similar { margin-top: clamp(48px, 7vw, 96px); }

/* gallery page */
.ggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ggrid figure { margin: 0; position: relative; overflow: hidden; background: var(--ink-800); }
.ggrid button { display: block; width: 100%; }
.ggrid img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.ggrid figure:hover img { transform: scale(1.04); }
.ggrid figcaption { padding: 10px 2px 4px; font-size: 13px; color: var(--muted); }
.ggrid figcaption strong { color: var(--text); font-weight: 600; display: block; }
.lightbox { width: min(96vw, 1200px); margin: auto; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; background: #000; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 2px; flex-wrap: wrap; }
.lightbox__bar p { font-size: 14px; color: var(--muted); }
.lightbox__bar p strong { color: var(--text); }
.lightbox__nav { display: flex; gap: 6px; }
.lightbox__nav .icon-btn { box-shadow: inset 0 0 0 1px var(--line-strong); }

/* about */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.story p + p { margin-top: 16px; }
.story img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.story--flip img { order: -1; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person { background: var(--ink-800); padding: 24px; border-radius: var(--radius); display: grid; gap: 8px; }
.person .ini { width: 52px; height: 52px; border-radius: 50%; background: var(--ink-600); display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: .04em; }
.person h3 { font-size: 18px; }
.person span { color: var(--shu); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.person p { color: var(--muted); font-size: 14px; }
.wide-plate { width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover; }

/* contact */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.info { display: grid; gap: 28px; }
.info h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.info p, .info li { font-size: 16px; }
.info a { border-bottom: 1px solid var(--line-strong); }
.info a:hover { border-color: var(--shu); }
.hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours li span:last-child { color: var(--muted); }
.form { display: grid; gap: 16px; background: var(--ink-800); padding: 28px; border-radius: var(--radius); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { justify-self: start; }
.form__done { display: grid; gap: 8px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--shu); font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); padding-bottom: 18px; max-width: 70ch; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .facts div:nth-child(3) { border-right: 0; }
  .facts div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .trows { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: grid; }
  .top { grid-template-columns: auto 1fr auto; }
  .hero__copy { padding-right: 0; transform: translateY(-58%); }
  .hero__index { right: auto; left: var(--gutter); top: auto; bottom: 28px; transform: none; flex-direction: row; gap: 18px; align-items: baseline; }
  .hero__index button[aria-current="true"]::after { width: 28px; }
  .hero__arrows { bottom: 24px; }
  .hero__strip { position: static; background: var(--ink-900); }
  .strip { grid-template-columns: 1fr; gap: 18px; border-top: 0; padding: 12px 0 8px; }
  .strip__item { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .film__grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .peek { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .cta__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .story, .story--flip { grid-template-columns: 1fr; }
  .story--flip img { order: 0; }
  .team { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .ggrid { grid-template-columns: repeat(2, 1fr); }
  .tgal { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero__stage { min-height: 560px; }
  .hero__title { font-size: clamp(34px, 9.6vw, 104px); }
  .h2 br { display: none; }
  .tbl thead { display: none; }
  .tbl, .tbl tbody { display: block; }
  .tbl tr { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "date price" "name name" "len act" "seats act"; gap: 2px 12px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
  .tbl tr:hover td { background: none; }
  .tbl td { display: block; padding: 0; border: 0; white-space: normal; }
  .tbl td.date { grid-area: date; }
  .tbl td.price { grid-area: price; text-align: right; }
  .tbl td.price small { display: block; margin: 0; }
  .tbl td.tname { grid-area: name; margin: 6px 0 8px; }
  .tbl td.len { grid-area: len; font-size: 13px; color: var(--muted); }
  .tbl td.seatsc { grid-area: seats; }
  .tbl td.act { grid-area: act; justify-self: end; }
  .tbl td.empty { grid-column: 1 / -1; }
  .hero__meta { gap: 10px 16px; }
  .hero__meta .btn { padding: 12px 16px; }
  .tgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tcard__body .h3 { font-size: 17px; }
  .tcard__body p { font-size: 12px; }
  .trow { grid-template-columns: 1fr; }
  .trow__media { aspect-ratio: 16 / 10; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(3) { border-right: 1px solid var(--line); }
  .facts div:nth-child(2n) { border-right: 0; }
  .facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .facts div:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
  .facts b small { display: block; margin: 2px 0 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat b { font-size: 28px; }
  .film__chapters { grid-template-columns: 1fr 1fr; gap: 10px; }
  .peek { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .foot__grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .book__row { grid-template-columns: 1fr; }
  .incl { grid-template-columns: 1fr; }
  .ggrid { grid-template-columns: 1fr; }
  .tgal { grid-template-columns: 1fr; }
  .day { grid-template-columns: 56px 1fr; }
  .cta__list li { grid-template-columns: 1fr; gap: 2px; }
  .filters .field { min-width: calc(50% - 6px); }
  .filters .field--grow { min-width: 100%; }
}
