/* ANTI YŪREI YŌKAI CLUB — site stylesheet */
:root {
  --bg: #070408;
  --panel: #100910;
  --panel-2: #160b12;
  --line: rgba(190, 50, 32, .38);
  --line-soft: rgba(255, 255, 255, .08);
  --red: #ff2222;
  --red-deep: #d40e0e;
  --purple: #b585f0;
  --bone: #efe7dc;
  --body: #cfc6ba;
  --dim: #8f8478;
  --disp: 'Oswald', 'Arial Narrow', sans-serif;
  --serif: 'Crimson Pro', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg) url('assets/bg-ghost.webp') center top / cover fixed;
  color: var(--body);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--bone); text-decoration: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px clamp(16px, 4vw, 44px);
  background: #050205;
  border-bottom: 2px solid rgba(255, 34, 34, .75);
  box-shadow: 0 1px 18px rgba(255, 34, 34, .3);
}
.nav img { height: 74px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.8)); }
.nav-links { display: flex; gap: clamp(14px, 2.6vw, 34px); align-items: center; }
.nav-links a {
  font-family: var(--disp); font-size: 16px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bone);
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  border-radius: 999px;
  font-family: var(--disp); font-size: 16px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--red-deep); color: #fff !important; padding: 20px 64px; font-size: 17px;
  border: 1px solid rgba(255, 80, 60, .85); transition: .2s;
}
.nav-cta:hover { background: #ff1f1f; color: #fff; box-shadow: 0 0 22px rgba(255,40,30,.5); }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav img { height: 36px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero-clean.jpg') center 25% / cover no-repeat;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,4,8,.55) 0%, rgba(7,4,8,.1) 35%, rgba(7,4,8,.55) 72%, var(--bg) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding: 0 clamp(18px, 5vw, 64px) clamp(56px, 10vh, 110px);
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.hero-kicker {
  font-family: var(--disp); font-size: clamp(11px, 1.4vw, 14px); font-weight: 500;
  letter-spacing: .45em; text-transform: uppercase; color: #c9a2f5;
  text-shadow: 0 0 16px rgba(154, 96, 224, .9), 0 2px 10px #000, 0 0 3px #000;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--disp); font-weight: 600; text-transform: uppercase;
  font-size: clamp(38px, 7.2vw, 84px); line-height: 1.02; color: var(--bone);
  letter-spacing: .015em;
  text-shadow: 0 4px 30px rgba(0,0,0,.9);
}
.hero h1 em { font-style: normal; color: var(--red); text-shadow: 0 0 26px rgba(224,36,36,.55); animation: warnFlicker 5s infinite 2s; }
.hero-sub {
  margin: 18px auto 30px; max-width: 640px;
  font-size: clamp(18px, 2.2vw, 22px); color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .95), 0 0 4px rgba(0, 0, 0, .9);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  font-family: var(--disp); font-size: 15px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 38px; display: inline-block; transition: .2s; cursor: pointer;
  border-radius: 999px;
  position: relative;
}
.btn:hover { animation: btnFlicker .35s steps(2) 1; }
@keyframes btnFlicker { 0% { opacity: 1; } 25% { opacity: .55; } 50% { opacity: .9; } 75% { opacity: .65; } 100% { opacity: 1; } }
.btn-red { background: var(--red-deep); color: #fff; border: 1px solid rgba(255,80,60,.9); box-shadow: 0 0 18px rgba(255,30,30,.25); }
.btn-red:hover { background: #ff1f1f; box-shadow: 0 0 34px rgba(255,40,30,.6); text-shadow: 0 0 8px #fff; }
.btn-ghost { background: rgba(10,5,8,.5); color: var(--bone); border: 1px solid rgba(239,231,220,.45); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(239,231,220,.08); }
.hero-scroll {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  color: var(--dim); font-family: var(--disp); font-size: 10px; letter-spacing: .35em;
  text-transform: uppercase; z-index: 2; animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---------- sections ---------- */
section { padding: clamp(44px, 6.5vw, 78px) clamp(18px, 5vw, 64px); }
.wrap { max-width: 1180px; margin: 0 auto; }
.sec-kicker {
  font-family: var(--disp); font-size: 15px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px; text-align: center;
}
.sec-title {
  font-family: var(--disp); font-weight: 600; text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 52px); color: var(--bone); text-align: center;
  line-height: 1.08; margin-bottom: 14px;
}
.sec-sub { text-align: center; max-width: 700px; margin: 0 auto 30px; color: #fff; font-size: 21px; }

/* ---------- tour cards ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 30px); }
@media (max-width: 980px) { .tours-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.tour-card {
  background: rgba(16, 9, 16, .88); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; overflow: hidden; transition: .25s;
}
.tour-card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.55); }
.tour-card .poster { aspect-ratio: 3 / 2; overflow: hidden; position: relative; }
.tour-card .poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tour-card:hover .poster img { transform: scale(1.05); }
.tour-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.tour-city {
  font-family: var(--disp); font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 6px;
}
.tour-name {
  font-family: var(--disp); font-weight: 600; font-size: 23px; line-height: 1.15;
  text-transform: uppercase; color: var(--bone); margin-bottom: 12px;
}
.tour-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  font-family: var(--disp); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: #e6ded2; border: 1px solid var(--line-soft); padding: 7px 13px; background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; line-height: 1;
}
.tour-meta { align-items: stretch; }
.chip.price { color: var(--red); border-color: var(--line); }
.tour-desc { font-size: 18px; color: var(--body); margin-bottom: 14px; }
.tour-hook { font-size: 16px; color: var(--dim); font-style: italic; margin-bottom: 20px; }
.tour-body .btn { margin-top: auto; text-align: center; }

/* ---------- poster hero ---------- */
:root { --neon-pink: #ff3ec8; --neon-green: #b8ff2e; }
.hero-poster { background: rgba(11, 5, 18, .6); padding-top: 64px; position: relative; }
.poster-full { width: 100%; height: auto; display: block; }
.poster-cta {
  position: absolute; left: 0; right: 0; bottom: 0;
  text-align: center; padding: 90px 18px 30px;
  background: linear-gradient(180deg, rgba(11,5,18,0) 0%, rgba(11,5,18,.78) 72%, rgba(11,5,18,.95) 100%);
}
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 700px) {
  .hero-poster { padding-top: 56px; }
  .poster-cta { position: static; padding: 18px 16px 28px; background: #0b0512; }
}
.btn-neon {
  background: rgba(20, 4, 16, .9); color: #fff;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 62, 200, .3);
  font-size: 15px; padding: 16px 36px;
}
.btn-neon:hover { background: rgba(50, 8, 40, .95); box-shadow: 0 0 38px rgba(255, 62, 200, .55); }

/* ---------- dark triangle campaign ---------- */
.triangle-sec {
  text-align: center;
  --unused-bg:
    radial-gradient(ellipse at 20% 10%, rgba(255, 62, 200, .08), transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(120, 40, 220, .12), transparent 50%),
    #060309;
  border-top: 1px solid rgba(255, 62, 200, .25);
}
.triangle-sec .sec-kicker { color: var(--neon-green); text-shadow: 0 0 12px rgba(184, 255, 46, .5); }
.tri-poster {
  max-width: 720px; width: 100%; margin: 0 auto 30px;
  border: 1px solid rgba(255, 62, 200, .55);
  box-shadow: 0 0 55px rgba(255, 62, 200, .22), 0 26px 70px rgba(0, 0, 0, .65);
  transition: box-shadow .3s;
}
.tri-poster:hover { box-shadow: 0 0 85px rgba(255, 62, 200, .38), 0 26px 70px rgba(0, 0, 0, .65); }
.tri-copy { max-width: 620px; margin: 0 auto 26px; font-size: 19px; color: #ddd3c6; }
.tri-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tri-chip {
  font-family: var(--disp); font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  padding: 12px 20px; border: 1px solid rgba(255, 62, 200, .5); color: var(--bone);
  background: rgba(255, 62, 200, .06); transition: .2s;
}
.tri-chip:hover { background: rgba(255, 62, 200, .16); box-shadow: 0 0 22px rgba(255, 62, 200, .3); color: #fff; }
.tri-chip b { color: var(--neon-pink); font-weight: 500; margin-right: 8px; }
.chip.tri { border-color: rgba(255, 62, 200, .55); color: var(--neon-pink); }

/* neon seep on hovers */
.tour-card:hover { border-color: rgba(255, 40, 40, .6); }
.btn-red:hover { box-shadow: 0 0 26px rgba(200, 30, 20, .35), 0 0 40px rgba(255, 62, 200, .18); }


/* ---------- book section ---------- */
.book-sec {
  background:
    radial-gradient(ellipse at 78% 20%, rgba(120, 12, 12, .22), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(90, 40, 140, .14), transparent 55%),
    rgba(22, 11, 18, .82);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.book-grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .book-grid { grid-template-columns: 1fr; text-align: center; } .book-cover-wrap { margin: 0 auto; } }
.book-cover-wrap { perspective: 1000px; max-width: 400px; position: relative; }
.book-cover-wrap::before {
  content: ''; position: absolute; inset: -14%;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 30, 30, .32), rgba(154, 96, 224, .16) 55%, transparent 78%);
  filter: blur(14px); z-index: 0; pointer-events: none;
}
.book-cover-wrap img { position: relative; z-index: 1; }
.book-cover-wrap img {
  border: 1px solid rgba(190,50,32,.5);
  box-shadow: -18px 24px 60px rgba(0,0,0,.75), 0 0 40px rgba(160,20,20,.18);
  transform: rotateY(7deg) rotateX(1deg);
  transition: transform .4s;
}
.book-cover-wrap:hover img { transform: rotateY(0) rotateX(0); }
.book-sec .sec-kicker, .book-sec .sec-title { text-align: left; }
@media (max-width: 860px) { .book-sec .sec-kicker, .book-sec .sec-title { text-align: center; } }
.book-copy p { margin-bottom: 14px; font-size: 18.5px; }
.book-copy .lead { font-size: 22px; color: var(--bone); font-style: italic; }
.book-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.book-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .book-ctas, .book-facts { justify-content: center; } }
.book-tag {
  font-family: 'Cinzel', var(--serif); color: var(--red); letter-spacing: .06em;
  font-size: 19px; margin-top: 22px;
}

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .sec-kicker, .about-grid .sec-title { text-align: left; }
.about-copy p { margin-bottom: 14px; }
.about-img img { border: 1px solid var(--line-soft); }

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


/* ---------- tour detail pages ---------- */
.tour-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; background: #000; overflow: hidden; }
.tour-hero .hero-bg { animation: none; }
.tour-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,4,8,.5), rgba(7,4,8,.15) 45%, var(--bg) 96%);
}
.tour-hero .hero-inner { text-align: left; max-width: 1180px; padding-bottom: 40px; }
.tour-hero h1 { font-size: clamp(30px, 5.4vw, 62px); }
.facts-bar {
  display: flex; flex-wrap: wrap; gap: 10px; max-width: 1180px;
  margin: -6px auto 0; padding: 18px clamp(18px, 5vw, 64px) 0;
}
.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4.5vw, 60px); align-items: start; }
@media (max-width: 940px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-copy h2, .booking-col h2 {
  font-family: var(--disp); font-size: 27px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; margin: 34px 0 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.detail-copy h2:first-child { margin-top: 0; }
.detail-copy p { margin-bottom: 14px; }
.inc-list { list-style: none; margin: 0 0 8px; }
.inc-list li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed var(--line-soft); }
.inc-list li::before { content: '†'; position: absolute; left: 4px; color: var(--red); }
.inc-list li.no::before { content: '✕'; color: var(--dim); font-size: 13px; top: 10px; }
.note-box {
  border: 2px solid rgba(255, 34, 34, .8); background: #050305;
  color: #fff; padding: 18px 20px; font-size: 17px; margin: 20px 0;
}
.booking-col { position: sticky; top: 84px; }
.bokun-frame {
  border: 1px solid var(--line-soft); background: #fff; min-height: 540px;
  max-height: 76vh; overflow-y: auto; overscroll-behavior: contain;
}
.faq h3 { font-family: var(--disp); font-size: 17px; letter-spacing: .05em; text-transform: uppercase; color: var(--bone); margin: 20px 0 6px; }
.faq p { color: var(--body); }
.back-link { font-family: var(--disp); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--dim); }
.back-link:hover { color: var(--red); }

/* grain overlay */
.grain::before {
  content: ''; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}


/* ---------- faq ---------- */
.faq-sec { background: transparent; border-top: 1px solid var(--line-soft); }
.faq-list { max-width: 920px; margin: 0 auto; background: rgba(7, 4, 8, .58); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border: 1px solid rgba(255, 255, 255, .1); padding: 14px 34px; }
.faq-list details {
  border-bottom: 1px solid var(--line-soft); padding: 4px 0;
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--disp); font-weight: 500; font-size: 19px; letter-spacing: .06em;
  color: var(--bone); padding: 16px 4px;
}
.faq-list summary::after { content: '+'; color: var(--red-bright); font-size: 22px; margin-left: 16px; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { padding: 0 4px 18px; color: var(--body); font-size: 18px; max-width: 700px; }


/* ---------- reviews ---------- */
.reviews-sec { background: #050305; border-top: 1px solid var(--line-soft); padding-top: 40px; }
.reviews-sec .elfsight-app-7ab43e1c-7a75-4c98-805a-d5b17f2d5f96 { max-width: 1080px; margin: 0 auto; }


@media (max-width: 760px) {
  body { background-attachment: scroll; }
}


/* red focus, no browser-purple outline */
a:focus-visible, button:focus-visible { outline: 2px solid rgba(255, 40, 40, .8); outline-offset: 2px; }
a:focus { outline: none; }

/* tours tight under hero, flavor line */
#tours { padding-top: 30px; }
.sub-flavor { font-style: italic; color: #fff; font-size: 20px; opacity: .92; }

/* prices you can't miss */
.chip.price {
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(212, 14, 14, .85); border: 1px solid rgba(255, 80, 60, .9);
  padding: 7px 14px; letter-spacing: .1em;
}
.book-facts .chip { font-size: 15px; padding: 9px 16px; }
.book-facts .chip.price { font-size: 15px; padding: 9px 18px; }
.rating-strip { text-align: center; margin: -14px 0 34px; font-family: var(--disp); font-size: 15px; letter-spacing: .08em; }
.rating-strip a { color: #ffd24d; }
.rating-strip b { color: #fff; }
.rating-strip a:hover { text-decoration: underline; }



/* creepy warning label */
.warning-label {
  font-family: 'Cinzel', serif; font-size: 20px; color: var(--red);
  text-shadow: 0 0 14px rgba(255, 30, 30, .55);
  margin-top: 22px; line-height: 1.5;
  animation: warnFlicker 5s infinite;
}
.warning-label span { font-size: 15px; color: #c9968a; font-style: italic; }
@keyframes warnFlicker {
  0%, 88%, 92%, 100% { opacity: 1; }
  89%, 93% { opacity: .3; }
  90% { opacity: .8; }
}

.about-copy p { font-size: 20px; }
.about-copy p.warning-label { font-size: 20px; }


/* ---------- footer ---------- */
footer { background: #050205; border-top: 2px solid rgba(255, 34, 34, .65); }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding: clamp(44px, 6vw, 70px) clamp(18px, 5vw, 64px) 38px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { height: 64px; margin-bottom: 14px; }
.foot-brand p { font-size: 16.5px; color: var(--body); max-width: 320px; }
.foot-rating a { font-family: var(--disp); font-size: 14px; color: #ffd24d; letter-spacing: .06em; }
.foot-head {
  font-family: var(--disp); font-size: 14px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 16.5px; color: var(--body); transition: .15s; width: fit-content; }
.foot-col a:hover { color: #fff; }
.foot-city { font-size: 15px; color: var(--dim); }
.foot-bar {
  text-align: center; padding: 18px; border-top: 1px solid var(--line-soft);
  font-size: 14px; color: var(--dim);
}
.foot-bar em { color: #d24532; font-style: italic; animation: warnFlicker 6s infinite 1s; }

/* CTA must beat .nav-links a specificity */
.nav-links a.nav-cta {
  padding: 14px 40px;
  font-size: 16px;
  letter-spacing: .12em;
  border-bottom: none;
}
@media (max-width: 760px) {
  .nav-links a.nav-cta { padding: 12px 28px; font-size: 14px; }
}


/* solid black facts bar on tour pages */
.facts-bar {
  max-width: none;
  margin: 0;
  width: 100%;
  background: #050305;
  border-top: 1px solid rgba(255, 34, 34, .55);
  border-bottom: 1px solid rgba(255, 34, 34, .35);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 20px clamp(16px, 4vw, 44px);
}
.facts-bar .chip { font-size: 14px; padding: 9px 16px; }

/* two-button tour cards */
.card-btns { display: flex; gap: 10px; margin-top: auto; }
.card-btns .btn { flex: 1; text-align: center; padding: 15px 10px; margin-top: 0; }
button.btn { border: none; cursor: pointer; }
button.btn-red { border: 1px solid rgba(255, 80, 60, .9); }


/* ---------- mobile nav ---------- */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-burger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav { display: grid; grid-template-columns: 56px 1fr 56px; align-items: center; padding: 8px 12px; }
  .nav-burger { display: block; justify-self: start; }
  .nav > a { justify-self: center; grid-column: 2; }
  .nav img { height: 52px; }
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #050205; border-bottom: 2px solid rgba(255, 34, 34, .6);
    padding: 18px 0 26px;
  }
  .nav.open .nav-links a:not(.nav-cta) { display: block; font-size: 18px; padding: 12px; }
  .nav.open .nav-links a.nav-cta { display: inline-block; margin-top: 10px; }
  .nav-links a.nav-cta { display: none; }
}


/* tour hero backgrounds (+ art-directed mobile crops) */
.bg-kyoto  { background-image: url('assets/hero-kyoto.jpg'); }
.bg-cursed { background-image: url('assets/tour-cursed.jpg'); }
.bg-osaka  { background-image: url('assets/tour-osaka.jpg'); background-position: center 20%; }
@media (max-width: 760px) {
  .hero-bg   { background-image: url('assets/hero-clean-m.webp'); }
  .bg-kyoto  { background-image: url('assets/hero-kyoto-m.webp'); }
  .bg-cursed { background-image: url('assets/tour-cursed-m.webp'); }
  .bg-osaka  { background-image: url('assets/tour-osaka-m.webp'); background-position: center; }
}
