/* ============================================================
   PLC — Tokyo, hands-free
   Luxury travel brand · Tokyo is the hero · PLC is the quiet host
   Minimal · premium · editorial. No decorative characters.
   No text outline / stroke / shadow / gradient on type.
   ============================================================ */
:root{
  --ink:#15223B;          /* deep navy near-black — headings, text */
  --ink-soft:#4B5A75;     /* secondary text */
  --navy-deep:#0E1830;    /* dark sections */
  --paper:#FCFBF8;        /* warm white base */
  --cloud:#F4F2EC;        /* warm light section */
  --gold:#B5894A;         /* refined accent — eyebrows, hairlines, numerals */
  --gold-soft:#C8A765;    /* lighter gold */
  --navy:#15315E;         /* booking UI navy — steppers, badges */
  --blue:#2E6FB0;         /* autocomplete accent */
  --blue-soft:#EAF1FA;    /* autocomplete soft bg */
  --green:#2E9E6B;        /* success / picked */
  --line:#E7E2D7;         /* warm hairline */
  --line-d:#2A3855;       /* hairline on dark */
  --white:#FFFFFF;

  --r:0px; --r-lg:0px;
  --sh:0 18px 50px rgba(16,24,48,.14);
  --sh-sm:0 8px 24px rgba(16,24,48,.08);
  --sh-lg:0 30px 80px rgba(14,24,48,.28);
  --maxw:1240px;

  --f-head:"Zen Kaku Gothic New","Plus Jakarta Sans",system-ui,sans-serif;
  --f-body:"Plus Jakarta Sans","Noto Sans JP",system-ui,sans-serif;
  --f-jp:"Noto Sans JP","Zen Kaku Gothic New",sans-serif;
}
:root{ --gold-soft:#C8A765; }
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; width:100%; max-width:100%; overflow-x:clip; }
body{ margin:0; width:100%; max-width:100%; font-family:var(--f-body); color:var(--ink); background:var(--paper);
  line-height:1.75; font-size:17px; font-weight:500; -webkit-font-smoothing:antialiased; overflow-x:clip; }
:lang(ja){ font-family:var(--f-jp); }
img,svg,video,canvas,iframe{ max-width:100%; }
img{ max-width:100%; display:block; }
main,section,header,footer{ max-width:100%; }
.wrap,.hero__inner,.header__inner{ min-width:0; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family:var(--f-head); font-weight:700; line-height:1.14; margin:0; color:var(--ink); letter-spacing:-.01em; }
:lang(ja) h1,:lang(ja) h2,:lang(ja) h3,:lang(ja) h4{ font-family:var(--f-jp); font-weight:700; letter-spacing:.01em; }
:lang(ja) h1,:lang(ja) h2,:lang(ja) .lead{ word-break:keep-all; line-break:strict; overflow-wrap:normal; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 26px; position:relative; }
.section{ padding:88px 0; }
.section--cloud{ background:var(--cloud); }
.section--dark{ background:var(--navy-deep); color:#fff; }

/* eyebrow — letter-spaced gold label */
.eyebrow{ display:inline-flex; align-items:center; gap:11px; font-family:var(--f-head); font-weight:700;
  font-size:.74rem; letter-spacing:.26em; text-transform:uppercase; color:var(--gold); }
:lang(ja) .eyebrow{ font-family:var(--f-jp); letter-spacing:.14em; }
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold); }
.eyebrow.center{ }
.section-head{ max-width:760px; margin:0 0 50px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head .eyebrow{ margin-bottom:18px; }
.section-head h2{ font-size:clamp(2rem,4.4vw,3.1rem); }
.section-head p{ color:var(--ink-soft); font-size:1.12rem; margin:18px 0 0; max-width:62ch; }
.section-head.center p{ margin-inline:auto; }
.section--dark .section-head h2{ color:#fff; }
.section--dark .section-head p{ color:#aebbd2; }
.section--dark .eyebrow{ color:var(--gold-soft); }
.section--dark .eyebrow::before{ background:var(--gold-soft); }

/* buttons — refined rectangles */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; font-family:var(--f-head);
  font-weight:700; font-size:1rem; letter-spacing:.01em; padding:15px 30px; border-radius:10px; white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s; }
:lang(ja) .btn{ font-family:var(--f-jp); }
.btn svg{ width:18px; height:18px; }
.btn-ink{ background:var(--ink); color:#fff; }
.btn-ink:hover{ background:#1d2f4f; transform:translateY(-2px); box-shadow:var(--sh-sm); }
.btn-gold{ background:var(--gold); color:#fff; }
.btn-gold:hover{ background:#a2783c; transform:translateY(-2px); box-shadow:0 12px 26px rgba(181,137,74,.34); }
.btn-light{ background:#fff; color:var(--ink); }
.btn-light:hover{ transform:translateY(-2px); box-shadow:var(--sh); }
.btn-line{ background:transparent; color:var(--ink); border:1.5px solid var(--line); }
.btn-line:hover{ border-color:var(--ink); }
.btn-line.on-dark{ color:#fff; border-color:rgba(255,255,255,.4); }
.btn-line.on-dark:hover{ border-color:#fff; background:rgba(255,255,255,.06); }
.btn-lg{ padding:17px 36px; font-size:1.06rem; }
.textlink{ font-family:var(--f-head); font-weight:700; display:inline-flex; align-items:center; gap:8px; border-bottom:1px solid currentColor; padding-bottom:3px; }
:lang(ja) .textlink{ font-family:var(--f-jp); }
.textlink:hover{ gap:12px; }
.footer .textlink--light{ color:var(--gold-soft); font-size:.94rem; border-bottom:none; padding:0; }
.footer .textlink--light:hover{ color:#fff; }

/* ---------- Header ---------- */
.header{ position:fixed; top:0; left:0; right:0; z-index:90; transition:background .3s, box-shadow .3s, border-color .3s; padding:10px 0; border-bottom:1px solid transparent; }
.header.scrolled{ background:rgba(252,251,248,.9); backdrop-filter:saturate(160%) blur(14px); border-bottom-color:var(--line); }
.header__inner{ display:flex; align-items:center; gap:18px; min-height:88px; padding:6px 0; }
.logo{ display:flex; align-items:center; gap:11px; min-width:0; }
.logo__mark{ flex:none; width:42px; height:42px; border-radius:11px; background:#fff; color:var(--ink); display:grid; place-items:center;
  font-family:var(--f-head); font-weight:700; font-size:.96rem; letter-spacing:.04em; position:relative; overflow:hidden; border:1px solid var(--line); }
.logo__mark::after{ content:""; position:absolute; left:0; bottom:0; width:100%; height:4px; background:var(--gold); }
.header:not(.scrolled) .logo__mark{ background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.3); }
/* image logo (weblogo.png). navy on light headers; whitened on dark hero header + footer */
.logo__img{ height:80px; width:auto; max-width:100%; display:block; }
.header:not(.scrolled):not(.is-solid) .logo__img{ filter:brightness(0) invert(1); }
.footer .logo__img{ filter:brightness(0) invert(1); }
@media (max-width:600px){
  .logo__img{ height:52px; }
  .footer .logo__img{ height:64px; }
}
.logo__txt{ display:flex; flex-direction:column; line-height:1; color:#fff; transition:color .3s; min-width:0; }
.header.scrolled .logo__txt{ color:var(--ink); }
.logo__txt b{ font-family:var(--f-head); font-weight:700; font-size:1.12rem; letter-spacing:.12em; }
.logo__txt span{ font-size:.55rem; letter-spacing:.2em; text-transform:uppercase; opacity:.7; font-weight:600; margin-top:3px; }
.nav{ display:none; gap:30px; margin-left:14px; }
.nav a{ font-family:var(--f-head); font-weight:600; font-size:.92rem; letter-spacing:.01em; color:#fff; opacity:.92; }
:lang(ja) .nav a{ font-family:var(--f-jp); }
.header.scrolled .nav a{ color:var(--ink); }
.nav a:hover{ color:var(--gold); opacity:1; }
.header__right{ margin-left:auto; display:flex; align-items:center; gap:14px; }
.lang{ display:inline-flex; gap:2px; align-items:center; font-family:var(--f-head); font-weight:700; font-size:.8rem; color:#fff; }
.header.scrolled .lang{ color:var(--ink); }
.lang button{ color:inherit; opacity:.55; padding:4px 5px; transition:.15s; }
.lang button[data-lang="ja"]{ font-family:var(--f-jp); }
.lang button.active{ opacity:1; }
.lang .sep{ opacity:.4; }
.header__book{ display:none; }

/* ---------- Mobile menu toggle (hamburger) ---------- */
.navtoggle{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px;
  margin-right:-8px; border-radius:11px; color:#fff; transition:color .3s, background .2s; }
.header.scrolled .navtoggle{ color:var(--ink); }
.navtoggle:active{ background:rgba(127,127,127,.14); }
.navtoggle__bars{ position:relative; width:22px; height:15px; }
.navtoggle__bars i{ position:absolute; left:0; right:0; height:2px; border-radius:2px; background:currentColor;
  transition:transform .28s ease, opacity .2s ease, top .28s ease; }
.navtoggle__bars i:nth-child(1){ top:0; }
.navtoggle__bars i:nth-child(2){ top:6.5px; }
.navtoggle__bars i:nth-child(3){ top:13px; }
body.menu-open .navtoggle__bars i:nth-child(1){ top:6.5px; transform:rotate(45deg); }
body.menu-open .navtoggle__bars i:nth-child(2){ opacity:0; }
body.menu-open .navtoggle__bars i:nth-child(3){ top:6.5px; transform:rotate(-45deg); }

/* ---------- Mobile menu (drawer) ---------- */
.mmenu{ position:fixed; inset:0; z-index:120; visibility:hidden; }
.mmenu.open{ visibility:visible; }
.mmenu__scrim{ position:absolute; inset:0; background:rgba(12,18,38,.5); opacity:0; transition:opacity .3s ease;
  backdrop-filter:blur(2px); }
.mmenu.open .mmenu__scrim{ opacity:1; }
.mmenu__panel{ position:absolute; top:0; right:0; height:100%; width:min(84vw,360px); background:var(--paper);
  box-shadow:-18px 0 50px rgba(12,18,38,.28); transform:translateX(100%); transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; padding:18px 22px calc(24px + env(safe-area-inset-bottom));
  overflow-y:auto; }
.mmenu.open .mmenu__panel{ transform:translateX(0); }
.mmenu__top{ display:flex; align-items:center; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid var(--line); }
.mmenu__brand{ display:flex; flex-direction:column; line-height:1; }
.mmenu__brand b{ font-family:var(--f-head); font-weight:700; font-size:1.15rem; letter-spacing:.12em; color:var(--ink); }
.mmenu__brand span{ font-size:.56rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; margin-top:4px; }
:lang(ja) .mmenu__brand span{ letter-spacing:.04em; text-transform:none; }
.mmenu__close{ width:42px; height:42px; display:grid; place-items:center; border-radius:10px; color:var(--ink); margin-right:-8px; }
.mmenu__close:active{ background:rgba(127,127,127,.12); }
.mmenu__nav{ display:flex; flex-direction:column; padding:8px 0; }
.mmenu__nav a{ font-family:var(--f-head); font-weight:600; font-size:1.18rem; color:var(--ink); padding:15px 4px;
  border-bottom:1px solid var(--line); display:flex; align-items:center; min-height:44px; }
:lang(ja) .mmenu__nav a{ font-family:var(--f-jp); }
.mmenu__nav a:active{ color:var(--gold); }
.mmenu__lang{ display:flex; gap:8px; margin:20px 0 16px; }
.mmenu__lang button{ flex:1; padding:11px 0; border:1px solid var(--line); border-radius:11px; font-family:var(--f-head);
  font-weight:700; font-size:.9rem; color:var(--ink-soft); background:#fff; min-height:44px; }
.mmenu__lang button[data-lang="ja"]{ font-family:var(--f-jp); }
.mmenu__lang button.active{ color:#fff; background:var(--navy); border-color:var(--navy); }
.mmenu__book{ width:100%; justify-content:center; padding:15px; font-size:1rem; }
.mmenu__contact{ text-align:center; margin-top:16px; }
.mmenu__contact a{ font-size:.92rem; color:var(--ink-soft); text-decoration:underline; text-underline-offset:3px; }

/* ============================================================
   HERO — full-bleed Tokyo, no characters
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; }
.hero__slides{ position:absolute; inset:0; z-index:0; }
.hero__slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.2s ease-in-out; }
.hero__slide.is-active{ opacity:1; }
.hero__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:0; filter:saturate(1.06) contrast(1.02); }
.hero__scrim{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(14,24,48,.38) 0%, rgba(14,24,48,.16) 30%, rgba(14,24,48,.2) 56%, rgba(14,24,48,.74) 100%), rgba(8,14,30,.24); }
.hero__inner{ position:relative; z-index:2; width:100%; max-width:var(--maxw); margin:0 auto; padding:0 26px 54px; color:#fff; }
.hero__story{ display:inline-flex; margin-bottom:14px; position:relative; }
.hero__cap{ display:none; align-items:center; gap:9px; font-family:var(--f-head); font-weight:700; font-size:.84rem;
  letter-spacing:.06em; color:#fff; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(6px); border-radius:999px; padding:8px 16px 8px 14px; }
:lang(ja) .hero__cap{ font-family:var(--f-jp); }
.hero__cap.is-active{ display:inline-flex; animation:capIn .7s ease both; }
.hero__cap::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--gold-soft); flex:none; }
@keyframes capIn{ from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:none;} }
.hero__foot{ display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:22px; flex-wrap:wrap; }
.hero__dots{ display:flex; gap:9px; }
.hero__dots .hdot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.42); padding:0; cursor:pointer; transition:.25s; }
.hero__dots .hdot.is-active{ background:#fff; width:26px; border-radius:6px; }
.hero__eyebrow{ color:#fff; }
.hero__eyebrow::before{ background:var(--gold-soft); }
.hero h1{ color:#fff; font-size:clamp(2.7rem,7vw,5.2rem); line-height:1.04; margin:18px 0 0; font-weight:700; max-width:16ch; }
.hero__jp{ font-family:var(--f-jp); font-weight:700; color:#fff; font-size:clamp(1.1rem,3.2vw,1.55rem); margin:16px 0 0; opacity:.96; }
.hero__sub{ color:rgba(255,255,255,.9); font-size:1.14rem; margin:18px 0 0; max-width:48ch; font-weight:500; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-top:28px; }
.hero__cta .textlink{ color:#fff; }

/* booking bar */
.bookbar{ position:relative; z-index:2; background:rgba(255,255,255,.96); backdrop-filter:blur(10px); border-radius:0;
  box-shadow:var(--sh); margin-top:34px; padding:12px; display:grid; gap:10px; max-width:760px; }
.bookbar__row{ display:grid; gap:10px; grid-template-columns:1fr; }
.bookbar__f{ padding:8px 14px; border-radius:0; background:var(--cloud); }
.bookbar__f label{ display:block; font-family:var(--f-head); font-weight:700; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); }
:lang(ja) .bookbar__f label{ font-family:var(--f-jp); letter-spacing:.06em; }
.bookbar__f .v{ font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:.98rem; display:flex; align-items:center; gap:8px; margin-top:2px; }
:lang(ja) .bookbar__f .v{ font-family:var(--f-jp); }
.bookbar__f .v img{ width:19px; height:19px; }
.bookbar .btn{ width:100%; }

/* ---------- Trust strip ---------- */
.trust{ background:var(--white); border-bottom:1px solid var(--line); }
.trust__grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); }
.trust__item{ background:#fff; padding:22px 18px; text-align:center; }
.trust__item .k{ font-family:var(--f-head); font-weight:700; font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
:lang(ja) .trust__item .k{ font-family:var(--f-jp); letter-spacing:.08em; }
.trust__item .v{ font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:1.04rem; margin-top:7px; }
:lang(ja) .trust__item .v{ font-family:var(--f-jp); }

/* ---------- Scene band (full-bleed Tokyo · emotion-carrying background) ---------- */
.band{ position:relative; overflow:hidden; isolation:isolate; color:#fff; }
.band__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; filter:saturate(1.06); }
.band__scrim{ position:absolute; inset:0; z-index:1; }
.band > .wrap{ position:relative; z-index:2; }
.band .eyebrow{ color:var(--gold-soft); } .band .eyebrow::before{ background:var(--gold-soft); }
.band h2{ color:#fff; }
/* statement uses a dark vignette so centered text reads over Tokyo Station */
.scrim-vignette{ background:radial-gradient(120% 120% at 50% 42%, rgba(10,18,38,.5) 0%, rgba(10,18,38,.72) 58%, rgba(10,18,38,.9) 100%); }
.scrim-bottom{ background:linear-gradient(180deg, rgba(10,18,38,.34) 0%, rgba(10,18,38,.12) 30%, rgba(10,18,38,.55) 72%, rgba(10,18,38,.86) 100%); }
.scrim-tb{ background:linear-gradient(180deg, rgba(10,18,38,.72) 0%, rgba(10,18,38,.32) 34%, rgba(10,18,38,.4) 62%, rgba(10,18,38,.82) 100%); }

/* ---------- Statement band ---------- */
.statement{ text-align:center; }
.statement h2{ font-size:clamp(1.9rem,4.6vw,3rem); max-width:20ch; margin:0 auto; line-height:1.3; color:#fff; }
.statement .jp{ font-family:var(--f-jp); }
.statement p{ color:rgba(255,255,255,.9); font-size:1.12rem; margin:22px auto 0; max-width:54ch; }
.statement__people{ display:flex; justify-content:center; gap:0; margin-top:34px; height:170px; align-items:flex-end; }
.statement__people img{ height:100%; filter:drop-shadow(0 14px 18px rgba(0,0,0,.4)); }
.statement__people img:nth-child(2){ margin-left:-26px; height:88%; }

/* ---------- How it works — faint Tokyo watermark, keeps text crisp ---------- */
.section--cloud{ background:var(--cloud); position:relative; isolation:isolate; }
.bg-watermark{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.bg-watermark img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.16; }
.bg-watermark::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(244,242,236,.86), rgba(244,242,236,.94)); }
.section--cloud > .wrap{ position:relative; z-index:1; }

/* ---------- Safety band (hotel arrival · reassurance, info-dense) ---------- */
.scrim-safety{ background:linear-gradient(180deg, rgba(10,18,38,.82) 0%, rgba(10,18,38,.62) 30%, rgba(10,18,38,.66) 64%, rgba(10,18,38,.86) 100%); }
.band--safety{ background:#0E1830; }
.safety__grid{ display:grid; gap:14px; grid-template-columns:1fr; }
.scard{ display:flex; gap:15px; align-items:flex-start; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(8px);
  border-radius:0; padding:20px 20px; }
.scard .ic{ width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.16); display:grid; place-items:center; margin-bottom:0; flex:none; }
.scard .ic img{ width:28px; height:28px; }
.scard__b{ min-width:0; }
.scard h3{ color:#fff; font-size:1.06rem; }
.scard p{ color:rgba(255,255,255,.84); font-size:.9rem; margin:5px 0 0; line-height:1.55; }
:lang(ja) .scard p{ word-break:keep-all; }
.scard .tbd{ color:rgba(255,255,255,.6); }
/* PLC Promise strip */
.promise{ margin-top:22px; display:flex; flex-wrap:wrap; align-items:center; gap:12px 22px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); border-radius:0; padding:18px 24px; }
.promise__title{ font-family:var(--f-head); font-weight:700; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft); }
:lang(ja) .promise__title{ font-family:var(--f-jp); letter-spacing:.06em; }
.promise__list{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:10px 20px; }
.promise__list li{ display:flex; align-items:center; gap:8px; font-family:var(--f-head); font-weight:600; font-size:.92rem; color:#fff; }
:lang(ja) .promise__list li{ font-family:var(--f-jp); }
.promise__list li::before{ content:""; width:18px; height:18px; flex:none; border-radius:50%; background:var(--gold);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/12px no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center/12px no-repeat; }
.flow{ display:grid; gap:30px; grid-template-columns:1fr; counter-reset:f; }
.flow__step{ position:relative; }
.flow__media{ position:relative; width:100%; aspect-ratio:4/3; border-radius:0; overflow:hidden;
  background:var(--cloud); box-shadow:var(--sh-sm); margin-bottom:18px; }
.flow__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.flow__no{ position:absolute; top:14px; left:14px; z-index:3; width:40px; height:40px; border-radius:50%;
  background:var(--ink); color:#fff; display:grid; place-items:center;
  font-family:var(--f-head); font-weight:700; font-size:.9rem; letter-spacing:.04em; box-shadow:0 4px 12px rgba(16,24,48,.35); }
.flow__step h3{ font-size:1.3rem; }
.flow__step p{ color:var(--ink-soft); font-size:.98rem; margin:9px 0 0; }

/* ---------- Vehicle differentiator (Tokyo street at dusk · van runs through the city) ---------- */
.vehicle{ background:var(--navy-deep); color:#fff; position:relative; overflow:hidden; isolation:isolate; }
.vehicle__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:.5; }
.vehicle__bg-scrim{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(115deg, rgba(10,18,38,.95) 0%, rgba(10,18,38,.8) 42%, rgba(10,18,38,.55) 100%),
            linear-gradient(0deg, rgba(10,18,38,.7), transparent 60%); }
.vehicle > .wrap{ position:relative; z-index:2; }
.vehicle__inner{ display:grid; gap:34px; align-items:center; }
.vehicle__visual{ position:relative; border-radius:var(--r-lg); overflow:hidden;
  background:radial-gradient(120% 100% at 50% 30%, rgba(46,70,118,.9) 0%, rgba(22,40,74,.85) 45%, rgba(12,20,40,.9) 100%);
  border:1px solid rgba(255,255,255,.12); padding:16px; }
.vehicle__visual img{ display:block; width:100%; max-width:100%; height:auto; margin:0; object-fit:contain;
  border-radius:0; box-shadow:0 18px 38px rgba(0,0,0,.4); }
.vehicle__visual .spot{ position:absolute; inset:0; background:radial-gradient(60% 50% at 50% 42%, rgba(255,255,255,.12), transparent 70%); }
.vehicle .eyebrow{ color:var(--gold-soft); } .vehicle .eyebrow::before{ background:var(--gold-soft); }
.vehicle h2{ color:#fff; font-size:clamp(2rem,4.6vw,3.1rem); }
.vehicle .lead{ color:#b9c6dd; font-size:1.14rem; margin:16px 0 26px; }
.vehicle__points{ display:grid; gap:14px; margin:0; padding:0; list-style:none; }
.vehicle__points li{ display:flex; align-items:center; gap:14px; padding-bottom:14px; border-bottom:1px solid var(--line-d); }
.vehicle__points li:last-child{ border-bottom:none; }
.vehicle__points .ic{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.08); display:grid; place-items:center; flex:none; }
.vehicle__points .ic img{ width:30px; height:30px; }
.vehicle__points b{ font-family:var(--f-head); font-weight:700; font-size:1.04rem; color:#fff; display:block; }
:lang(ja) .vehicle__points b{ font-family:var(--f-jp); }
.vehicle__points span{ font-size:.88rem; color:#9fb0cc; }

/* ---------- Explore Tokyo (editorial, no people) ---------- */
.explore__feature{ position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:16/8; box-shadow:var(--sh-sm); margin-bottom:18px; }
.explore__feature img{ width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1); }
.explore__feature:hover img{ transform:scale(1.05); }
.explore__feature .cap{ position:absolute; left:0; bottom:0; right:0; padding:34px 30px; color:#fff;
  background:linear-gradient(0deg, rgba(14,24,48,.72), transparent 90%); }
.explore__feature .cap .en{ font-family:var(--f-head); font-weight:700; font-size:1.9rem; line-height:1; }
.explore__feature .cap .jp{ font-family:var(--f-jp); font-weight:500; opacity:.9; margin-top:6px; letter-spacing:.04em; }
.explore__grid{ display:grid; gap:18px; grid-template-columns:1fr; }
.tile{ position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/3; box-shadow:var(--sh-sm); }
.tile img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.tile:hover img{ transform:scale(1.06); }
.tile .cap{ position:absolute; left:0; right:0; bottom:0; padding:20px; color:#fff; background:linear-gradient(0deg, rgba(14,24,48,.74), transparent 92%); }
.tile .cap .en{ font-family:var(--f-head); font-weight:700; font-size:1.25rem; line-height:1; }
.tile .cap .jp{ font-family:var(--f-jp); font-weight:500; font-size:.82rem; opacity:.9; margin-top:5px; }

/* ---------- Pricing (premium) ---------- */
.price__lead{ display:grid; gap:12px; margin-bottom:34px; }
.value-row{ display:flex; flex-wrap:wrap; gap:10px; }
.value-row .v{ display:inline-flex; align-items:center; gap:9px; font-family:var(--f-head); font-weight:700; font-size:.92rem; color:var(--ink);
  background:#fff; border:1px solid var(--line); border-radius:999px; padding:9px 16px; }
:lang(ja) .value-row .v{ font-family:var(--f-jp); }
.value-row .v img{ width:22px; height:22px; }
.price-grid{ display:grid; gap:22px; grid-template-columns:1fr; }
.plan{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-sm); }
.plan__top{ padding:24px 26px 20px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:12px; }
.plan__top .name{ font-family:var(--f-head); font-weight:700; font-size:1.16rem; color:var(--ink); }
:lang(ja) .plan__top .name{ font-family:var(--f-jp); }
.plan__top .route{ font-size:.84rem; color:var(--ink-soft); margin-top:3px; }
.plan__top .ribbon{ font-family:var(--f-head); font-weight:700; font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold); border-radius:999px; padding:5px 11px; }
.plan__body{ padding:24px 26px 26px; }
.plan__price{ display:flex; align-items:baseline; gap:6px; }
.plan__price .cur{ font-family:var(--f-head); font-weight:700; font-size:1.5rem; }
.plan__price .amt{ font-family:var(--f-head); font-weight:700; font-size:3.1rem; line-height:.9; letter-spacing:-.02em; }
.plan__price .tax{ font-size:.84rem; color:var(--ink-soft); }
/* opening campaign — struck list price + discounted + badge */
.plan__price .plan__was{ font-family:var(--f-head); font-weight:700; font-size:1.5rem; color:#b3aa98; text-decoration:line-through; letter-spacing:-.01em; align-self:center; margin-right:2px; }
.plan__camp{ display:inline-flex; align-items:center; margin:10px 0 0; font-family:var(--f-head); font-weight:700; font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); background:#FBF7EE; border:1px solid #E7D9B8; border-radius:999px; padding:6px 13px; }
:lang(ja) .plan__camp{ font-family:var(--f-jp); letter-spacing:.04em; }
.plan__feat{ list-style:none; padding:0; margin:18px 0 22px; display:grid; gap:11px; }
.plan__feat li{ display:flex; align-items:flex-start; gap:10px; font-size:.96rem; color:var(--ink); }
.plan__feat li svg{ width:18px; height:18px; color:var(--gold); flex:none; margin-top:4px; }
.plan__feat .ft{ display:flex; flex-direction:column; }
.plan__feat .sub{ font-size:.82rem; color:var(--ink-soft); line-height:1.45; margin-top:2px; }
:lang(ja) .plan__feat .sub{ word-break:keep-all; line-break:strict; }
.plan .btn{ width:100%; }
.price-foot{ text-align:center; margin-top:24px; color:var(--ink-soft); font-size:.94rem; }
.price__both{ margin-top:14px; font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:1rem; }
:lang(ja) .price__both{ font-family:var(--f-jp); }
.optplans{ margin-top:48px; padding-top:36px; border-top:1px solid var(--line); text-align:center; }
.optplans__h{ font-family:var(--f-head); font-weight:700; font-size:1.5rem; color:var(--ink); margin:10px 0 24px; }
:lang(ja) .optplans__h{ font-family:var(--f-jp); }
.optplans__grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:760px; margin:0 auto; }
@media (max-width:680px){ .optplans__grid{ grid-template-columns:1fr; } }
.optplan{ background:var(--paper); border:1px solid var(--line); border-radius:0; padding:24px; text-align:left; }
.optplan__price{ display:flex; align-items:baseline; gap:8px; margin-bottom:12px; }
.optplan__price .amt{ font-family:var(--f-head); font-weight:800; font-size:1.9rem; color:var(--navy); }
.optplan__price .per{ font-size:.86rem; color:var(--ink-soft); }
:lang(ja) .optplan__price .per{ font-family:var(--f-jp); }
.optplan h4{ font-family:var(--f-head); font-weight:700; font-size:1.08rem; color:var(--ink); margin:0 0 8px; }
:lang(ja) .optplan h4{ font-family:var(--f-jp); }
.optplan p{ font-size:.9rem; color:var(--ink-soft); line-height:1.6; margin:0; }
:lang(ja) .optplan p{ word-break:normal; overflow-wrap:anywhere; }
.optplans__foot{ margin-top:20px; font-size:.86rem; color:var(--ink-soft); }
:lang(ja) .optplans__foot{ word-break:normal; overflow-wrap:anywhere; }
.section-head.center .price__both{ margin-inline:auto; }

/* ---------- Service routes (both directions) ---------- */
.routes__grid{ display:grid; gap:18px; grid-template-columns:1fr; }
.routecard{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--sh-sm); padding:28px 26px; }
.routecard__no{ position:absolute; top:18px; right:22px; font-family:var(--f-head); font-weight:700; font-size:.8rem; letter-spacing:.16em; color:var(--gold); }
.routecard__chips{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.routecard__chip{ display:inline-flex; align-items:center; font-family:var(--f-head); font-weight:700; font-size:.96rem; color:var(--ink); background:var(--cloud); border:1px solid var(--line); border-radius:999px; padding:8px 18px; }
:lang(ja) .routecard__chip{ font-family:var(--f-jp); }
.routecard__arrow{ width:22px; height:22px; color:var(--gold); flex:none; }
.routecard h3{ font-size:1.3rem; }
.routecard p{ color:var(--ink-soft); font-size:.98rem; margin:9px 0 0; }
:lang(ja) .routecard p{ word-break:keep-all; }
@media (min-width:680px){ .routes__grid{ grid-template-columns:repeat(3,1fr); gap:20px; } }
@media (max-width:768px){ :lang(ja) .routecard p{ word-break:normal; overflow-wrap:anywhere; } }
.tbd{ color:#a7a294; font-size:.82rem; }

/* ---------- Compare (slim, minimal) ---------- */
.compare{ border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; background:#fff; }
.compare__scroll{ overflow-x:auto; }
.compare table{ width:100%; border-collapse:collapse; min-width:560px; }
.compare th,.compare td{ padding:16px 16px; text-align:center; border-bottom:1px solid var(--line); font-size:.96rem; }
.compare thead th{ font-family:var(--f-head); font-weight:700; font-size:.82rem; letter-spacing:.04em; color:var(--ink-soft); }
:lang(ja) .compare thead th{ font-family:var(--f-jp); }
.compare thead th.plc{ color:var(--ink); }
.compare tbody th{ text-align:left; font-family:var(--f-head); font-weight:700; color:var(--ink); }
:lang(ja) .compare tbody th{ font-family:var(--f-jp); }
.compare td.plc{ background:#FBF7EE; font-family:var(--f-head); font-weight:700; color:var(--ink); }
:lang(ja) .compare td.plc{ font-family:var(--f-jp); }
.compare tr:last-child th,.compare tr:last-child td{ border-bottom:none; }
.compare .y{ color:var(--gold); font-weight:700; } .compare .n{ color:#C7C2B6; }

/* ---------- Final CTA ---------- */
.final{ position:relative; min-height:84svh; display:flex; align-items:center; overflow:hidden; }
.final__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; filter:saturate(1.06); }
.final__scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, rgba(14,24,48,.74) 0%, rgba(14,24,48,.4) 45%, rgba(14,24,48,.12) 100%); }
.final__inner{ position:relative; z-index:2; color:#fff; padding:60px 0; }
.final .eyebrow{ color:var(--gold-soft); } .final .eyebrow::before{ background:var(--gold-soft); }
.final h2{ color:#fff; font-size:clamp(2.3rem,5.5vw,4rem); max-width:16ch; }
.final__jp{ font-family:var(--f-jp); font-weight:700; color:#fff; font-size:clamp(1.1rem,3vw,1.5rem); margin:14px 0 0; opacity:.95; }
.final p.sub{ color:rgba(255,255,255,.9); font-size:1.12rem; margin:16px 0 0; max-width:44ch; }
.final__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }

/* ---------- Footer ---------- */
.footer{ background:var(--navy-deep); color:#9fb0cc; padding:60px 0 32px; }
.footer__grid{ display:grid; gap:32px; }
.footer__brand .logo__mark{ background:#fff; color:var(--navy-deep); border:none; }
.footer__brand .logo__txt{ color:#fff; }
.footer__brand .logo__txt span{ color:#7e90b0; }
.footer__brand p{ font-size:.94rem; margin:16px 0 0; max-width:34ch; color:#9fb0cc; }
.footer__col h5{ font-family:var(--f-head); font-weight:700; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:#fff; margin:0 0 16px; }
:lang(ja) .footer__col h5{ font-family:var(--f-jp); letter-spacing:.08em; }
.footer__col a{ display:block; font-size:.94rem; padding:7px 0; color:#9fb0cc; }
.footer__col a:hover{ color:#fff; }
.footer__b2b{ border:1px solid var(--line-d); border-radius:var(--r); padding:22px; }
.footer__b2b h5{ color:#fff; } .footer__b2b p{ font-size:.88rem; margin:0 0 14px; color:#9fb0cc; }
.footer__b2b .soon{ display:inline-flex; align-items:center; gap:7px; font-family:var(--f-head); font-weight:700; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-soft); border:1px solid var(--line-d); border-radius:999px; padding:6px 13px; }
:lang(ja) .footer__b2b .soon{ font-family:var(--f-jp); letter-spacing:.06em; }
.footer__bottom{ border-top:1px solid var(--line-d); margin-top:40px; padding-top:24px; display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; font-size:.82rem; }
.footer__bottom .links{ display:flex; gap:20px; flex-wrap:wrap; }

/* ---------- Mobile sticky bar ---------- */
.mobilebar{ position:fixed; left:0; right:0; bottom:0; z-index:95; background:rgba(252,251,248,.96); backdrop-filter:blur(12px);
  border-top:1px solid var(--line); padding:11px 18px calc(11px + env(safe-area-inset-bottom)); display:flex; gap:14px; align-items:center;
  transform:translateY(130%); transition:transform .3s ease; box-shadow:0 -8px 24px rgba(16,24,48,.1); }
.mobilebar.show{ transform:translateY(0); }
.mobilebar .pm{ flex:1; line-height:1.2; }
.mobilebar .pm b{ font-family:var(--f-head); font-weight:700; font-size:1.02rem; color:var(--ink); }
:lang(ja) .mobilebar .pm b{ font-family:var(--f-jp); }
.mobilebar .pm span{ display:block; font-size:.72rem; color:var(--ink-soft); }

/* reveal — transform-only so content is always visible if the animation never plays */
.reveal.in{ animation:rv .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes rv{ from{ transform:translateY(22px); } to{ transform:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width:680px){
  .trust__grid{ grid-template-columns:repeat(4,1fr); }
  .flow{ grid-template-columns:repeat(3,1fr); gap:34px; }
  .flow__step{ padding-top:0; }
  .price-grid{ grid-template-columns:repeat(2,1fr); }
  .explore__grid{ grid-template-columns:repeat(3,1fr); }
  .safety__grid{ grid-template-columns:repeat(2,1fr); }
  .bookbar__row{ grid-template-columns:1fr 1fr 1fr; }
  .bookbar{ grid-template-columns:1fr auto; align-items:end; }
  .bookbar .btn{ width:auto; padding-inline:34px; }
}
@media (min-width:940px){
  .section{ padding:120px 0; }
  .nav{ display:flex; }
  .header__book{ display:inline-flex; padding:11px 24px; font-size:.92rem; }
  .hero__inner{ padding-bottom:64px; }
  .hero h1{ max-width:18ch; }
  .vehicle__inner{ grid-template-columns:1.1fr .9fr; gap:54px; }
  .footer__grid{ grid-template-columns:1.7fr 1fr 1fr 1.4fr; }
  .mobilebar{ display:none !important; }
  .explore__grid{ grid-template-columns:repeat(3,1fr); }
  .navtoggle{ display:none; }
  .mmenu{ display:none !important; }
}
@media (prefers-reduced-motion:reduce){ *{ animation:none !important; scroll-behavior:auto !important; } }

/* ============================================================
   MOBILE SAFETY — guarantees no horizontal overflow ≤768px
   Roots fixed at source (no 100vw, box-sizing global, img capped);
   this block is the belt-and-suspenders for narrow screens.
   ============================================================ */
@media (max-width:768px){
  .wrap{ padding-left:20px; padding-right:20px; }
  /* tighten vertical rhythm so sections read instead of feeling empty */
  .section{ padding:56px 0; }
  /* Japanese headings/body: allow natural wrapping so long lines never clip on phones */
  :lang(ja) h1, :lang(ja) h2, :lang(ja) h3, :lang(ja) .lead,
  :lang(ja) .scard p, :lang(ja) .section-head p, :lang(ja) .hero__sub{
    word-break:normal; line-break:auto; overflow-wrap:anywhere;
  }
  .band h2, .final h2{ font-size:clamp(1.7rem,6.6vw,2.25rem); max-width:100%; }
  .vehicle h2{ font-size:clamp(1.7rem,6.6vw,2.25rem); }
  .section-head{ margin-bottom:32px; }
  .section-head h2{ font-size:clamp(1.55rem,6vw,2.1rem); }
  .section-head p{ font-size:1rem; margin-top:12px; }
  .header__inner{ gap:12px; min-height:66px; }
  /* header logo: keep mark + wordmark tidy; drop the long tagline so it never wraps under the mark */
  .logo__mark{ width:38px; height:38px; }
  .logo__txt span{ display:none; }
  .logo__txt b{ font-size:1.05rem; letter-spacing:.1em; }
  .header__right{ gap:8px; }
  .lang{ flex:none; }
  /* HERO (mobile): a tall full-bleed crop zooms into a ~30% slice of a landscape
     photo, hiding the people/luggage/vehicle. Instead, show the photo as a
     contained square panel and put the headline + booking bar on solid navy
     below it — the whole scene reads, and text/image no longer fight. */
  .hero{ flex-direction:column; align-items:stretch; min-height:0; background:var(--navy-deep); }
  .hero__slides{ position:relative; inset:auto; width:100%; aspect-ratio:1/1; flex:none; z-index:0; }
  .hero__scrim{ display:none; }
  .hero__slides::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
    background:linear-gradient(180deg, rgba(14,24,48,.30) 0%, rgba(14,24,48,0) 36%, rgba(14,24,48,.16) 70%, var(--navy-deep) 100%); }
  .hero__inner{ position:relative; z-index:2; padding:24px 20px 40px; color:#fff; }
  .hero__story{ margin-bottom:12px; }
  .hero h1{ max-width:100%; font-size:clamp(2.2rem,7.6vw,3rem); margin-top:14px; }
  .hero__jp{ margin-top:12px; }
  .hero__sub{ max-width:100%; font-size:1.02rem; }
  /* background-image sections: cap height so there's no large empty band */
  .band{ padding:52px 0; }
  .band > .wrap{ padding-top:0; padding-bottom:0; }
  .statement h2{ font-size:clamp(1.6rem,6.6vw,2.2rem); }
  .vehicle h2,.final h2{ font-size:clamp(1.8rem,7vw,2.5rem); }
  /* vehicle: tighten so the comic isn't floating in empty navy */
  .vehicle{ padding:46px 0; }
  .vehicle__inner{ gap:22px; align-items:start; }
  .vehicle__visual{ padding:10px; }
  .final{ min-height:auto; }
  .final__inner{ padding:52px 0; }
  /* booking card fills the column, never wider */
  .bookbar{ width:100%; max-width:100%; }
  /* lower cards: keep within the screen */
  .price-grid,.explore__grid,.safety__grid,.trust__grid{ grid-template-columns:1fr; }
  .trust__grid{ grid-template-columns:1fr 1fr; }
  .promise__list{ gap:8px 16px; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  /* any media inside cards cannot exceed its box */
  .flow__media,.explore__feature,.tile,.vehicle__visual{ max-width:100%; }
}
@media (max-width:430px){
  .section{ padding:48px 0; }
  .footer__grid{ grid-template-columns:1fr; }
  /* header: keep logo + lang on one tidy line on the narrowest phones */
  .logo__txt b{ font-size:1rem; }
  .logo__txt span{ font-size:.6rem; }
  .final__cta .btn{ width:100%; justify-content:center; }
}

/* ============================================================
   MOBILE IMAGE FRAMING ≤768px
   Full-bleed photos use object-fit:cover. On tall, narrow phone
   viewports a centred crop slices to the middle and "zooms in",
   hiding the subject (person / luggage / car / landmark).
   We re-aim each image's object-position so the meaningful part
   stays in frame on portrait screens. Desktop is untouched.
   ============================================================ */
@media (max-width:768px){
  /* HERO slideshow — square panel; centre-ish crops so each whole scene reads */
  /* 1 · Airport hand-off: traveler (left) + red suitcase + driver (right) */
  .hero__slide:nth-child(1) .hero__bg{ object-position:52% 46%; }
  /* 2 · Asakusa gate: balance the traveler (left) and the red lantern (right) */
  .hero__slide:nth-child(2) .hero__bg{ object-position:44% 44%; }
  /* 3 · Hotel lobby: traveler + suitcase + concierge welcome */
  .hero__slide:nth-child(3) .hero__bg{ object-position:50% 50%; }

  /* STATEMENT band (Shibuya crossing): drop down to the crowd, not the sky */
  .statement .band__bg{ object-position:50% 72%; }
  /* SAFETY band (hotel arrival): keep the luggage hand-over in frame */
  .band--safety .band__bg{ object-position:55% 48%; }
  /* VEHICLE section street (Ginza): show the avenue + bus, not the rooftops */
  .vehicle__bg{ object-position:50% 62%; }
  /* FINAL CTA (Tokyo Tower at night): favour the tower over the foreground water */
  .final__bg{ object-position:50% 40%; }

  /* EXPLORE feature (Asakusa gate, 16:8 card): keep gate + traveler centred-left */
  .explore__feature img{ object-position:42% 40%; }
}
