:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #627077;
  --paper: #fbfaf7;
  --line: #ded8cc;
  --gold: #b98b43;
  --gold-dark: #7a5523;
  --cedar: #21443d;
  --sakura: #b64b61;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 33, 38, 0.16);
  font-family:
    "Inter", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: inline-flex;
  width: 68px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(23, 33, 38, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 12px;
  opacity: 0.82;
}

.nav a:hover {
  background: #f4ead8;
  color: var(--gold-dark);
  opacity: 1;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(23, 33, 38, 0.14);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switcher {
  border-color: rgba(23, 33, 38, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.language-switcher button {
  display: inline-grid;
  min-width: 32px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--gold);
  color: #16120b;
}

.header-action {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--gold);
  color: #16120b;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  margin-top: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #111819;
  padding: clamp(32px, 5vw, 84px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("assets/tokyo-tower-original.jpg")
      center / cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 19, 0.18), rgba(9, 18, 19, 0.08) 40%, rgba(9, 18, 19, 0.5)),
    linear-gradient(0deg, rgba(9, 18, 19, 0.54), rgba(9, 18, 19, 0.08) 52%, rgba(9, 18, 19, 0.22));
  content: "";
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  margin-left: auto;
  padding: clamp(18px, 2.4vw, 34px) 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-company-logo {
  width: 92px;
  margin: 18px 0 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-company-name {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-company-jp {
  display: block;
  margin-top: 14px;
  color: #e7c27e;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.06em;
}

.hero-company-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.hero-company-info {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-company-info div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: baseline;
}

.hero-company-info dt {
  color: #e7c27e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 800;
}

.hero-company-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 14px;
  color: #e7c27e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: none;
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero .hero-stats {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #16120b;
  box-shadow: 0 16px 34px rgba(185, 139, 67, 0.32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 44px 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px;
  background: rgba(17, 28, 31, 0.42);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--cedar);
  color: var(--white);
}

.trust-bar span {
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  padding: 0 18px 0 6px;
  font-size: 14px;
}

.trust-bar span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.intro p:not(.eyebrow),
.split-content p,
.contact-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 260px;
  object-fit: cover;
}

.service-card div {
  padding: 26px;
}

.service-card p,
.fleet article p,
.route-list p {
  color: var(--muted);
  line-height: 1.7;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 620px;
  background: var(--cedar);
  color: var(--white);
}

.split-image {
  min-height: 420px;
  background:
    linear-gradient(rgba(15, 30, 33, 0.1), rgba(15, 30, 33, 0.1)),
    url("assets/van-interior.jpg")
      center / cover;
}

.split-content {
  align-self: center;
  padding: clamp(44px, 6vw, 82px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: #e7c27e;
  content: "✓";
  font-weight: 900;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fleet article {
  min-height: 230px;
  border: 1px solid var(--line);
  padding: 30px;
  background: rgba(255, 255, 255, 0.48);
}

.fleet-type {
  display: block;
  margin-bottom: 44px;
  color: var(--sakura);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-gallery {
  padding-top: 0;
}

.vehicle-gallery .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111819;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(0deg, rgba(9, 18, 19, 0.78), rgba(9, 18, 19, 0));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.routes {
  background: #f0eee8;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.route-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 26px 18px 26px 0;
}

.route-list span {
  color: var(--gold-dark);
  font-weight: 900;
}

.route-list h3,
.route-list p {
  grid-column: 2;
}

.prices {
  background: var(--paper);
}

.prices .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}

.price-card-heading h3 {
  margin: 0;
}

.price-card-heading span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 11px;
  background: #f1e0bd;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.table-scroll {
  max-height: 680px;
  overflow: auto;
}

.fare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.fare-table th,
.fare-table td {
  border-bottom: 1px solid #d8d2c7;
  padding: 10px 12px;
  text-align: right;
  white-space: nowrap;
}

.fare-table th:first-child,
.fare-table td:first-child {
  min-width: 230px;
  background: #f2f0ea;
  color: #2b363a;
  text-align: left;
}

.fare-table thead th {
  position: sticky;
  z-index: 2;
  top: 0;
  background: #172622;
  color: var(--white);
  font-size: 13px;
}

.fare-table thead th:first-child {
  background: #172622;
  color: var(--white);
}

.fare-table td:nth-child(2),
.fare-table td:nth-child(3) {
  color: #11191c;
  font-weight: 900;
}

.fare-table tbody tr:hover td {
  background: #fff8e8;
}

.day-plan {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 18px 22px 20px;
  background: #f7f4ec;
}

.day-plan span {
  color: var(--gold-dark);
  font-weight: 900;
}

.day-plan strong {
  font-size: 24px;
}

.day-plan small {
  color: var(--muted);
}

.price-note {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  padding: 76px 28px 28px;
  background: var(--white);
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--gold);
  content: "0" counter(step);
  font-size: 28px;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: #182622;
  color: var(--white);
}

.contact-info {
  align-self: center;
}

.contact .contact-info > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-methods a,
.contact-methods span {
  color: #e7c27e;
  font-weight: 800;
}

.company-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.6;
}

.company-card strong {
  color: var(--white);
  font-size: 18px;
}

.company-card b {
  margin-right: 8px;
  color: #e7c27e;
}

.qr-panel {
  margin-top: 34px;
}

.qr-heading h3 {
  color: var(--white);
}

.qr-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.qr-grid figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.qr-grid img {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.qr-grid figcaption {
  margin-top: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
  color: var(--ink);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #334045;
  font-size: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cfc8bb;
  border-radius: 0;
  padding: 14px 13px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.booking-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #101818;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-company {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-action {
    padding: 10px 14px;
  }

  .header-tools {
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: calc(100vh - 96px);
    margin-top: 96px;
    justify-content: flex-start;
    padding: 28px 22px 36px;
  }

  .hero-media {
    background-position: center;
  }

  .hero-brand-panel {
    display: none;
  }

  .hero-content {
    width: auto;
    max-width: 560px;
    margin: auto 0 0;
    padding: 0;
  }

  .hero-stats,
  .intro,
  .service-grid,
  .split-band,
  .fleet-grid,
  .gallery-grid,
  .route-list,
  .price-board,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .route-list article {
    grid-template-columns: 42px 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .table-scroll {
    max-height: 560px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 58px;
    height: 36px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-tools {
    max-width: 184px;
  }

  .language-switcher {
    max-width: 100%;
    overflow-x: auto;
  }

  .language-switcher button {
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .header-action {
    font-size: 12px;
  }

  .hero-content {
    width: auto;
    padding: 0;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-company-name {
    font-size: 46px;
  }

  .hero-company-info div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .trust-bar {
    justify-content: flex-start;
  }

  .trust-bar span {
    border-right: 0;
    padding-right: 4px;
  }

  .service-card img {
    height: 210px;
  }

  .price-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fare-table {
    min-width: 480px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .qr-grid {
    grid-template-columns: 1fr;
  }

  .qr-grid img {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-top: 18px;
  }
}
