:root {
  --ink: #111815;
  --ink-soft: #34403b;
  --muted: #66716c;
  --paper: #f4f7f4;
  --white: #ffffff;
  --mist: #e6ece8;
  --green: #0b604c;
  --green-dark: #073b31;
  --signal: #e9bb3d;
  --signal-dark: #9a7417;
  --line: rgba(17, 24, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(7, 30, 24, 0.12);
  --max: 1280px;
  --header-height: 82px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(215px, 0.8fr) auto minmax(185px, 0.8fr);
  align-items: center;
  gap: 26px;
  padding: 0 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(5, 16, 13, 0.48), rgba(5, 16, 13, 0.03));
  transition: height 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 72px;
  color: var(--ink);
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(7, 29, 23, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 5px rgba(255, 255, 255, 0.35));
}

.brand span {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand strong {
  font-size: 20px;
  font-weight: 720;
  line-height: 1.25;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 9px;
  line-height: 1.45;
  opacity: 0.72;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-nav > a,
.site-nav > .nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  color: currentColor;
  font-size: 13px;
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
  transition: height 220ms ease, color 180ms ease;
}

.is-scrolled .site-nav > a,
.is-scrolled .site-nav > .nav-item > a,
.is-open .site-nav > a,
.is-open .site-nav > .nav-item > a {
  height: 72px;
}

.site-nav > a::after,
.site-nav > .nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.site-nav > .nav-item > a:hover::after,
.site-nav > .nav-item > a.is-active::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: max-content;
  min-width: 220px;
  padding: 9px 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--signal);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 180ms ease;
}

.nav-submenu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 560;
  border-left: 2px solid transparent;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--green);
  border-left-color: var(--signal);
  background: var(--paper);
  outline: none;
}

.nav-item:hover > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu-toggle {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.language {
  position: relative;
}

.language-current {
  min-width: 66px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 2px;
  color: currentColor;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.language-current span {
  font-size: 12px;
  font-weight: 650;
}

.language-current i {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.language.is-open .language-current i {
  transform: rotate(225deg) translate(-2px, -1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  min-width: 132px;
  padding: 7px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 30, 24, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  color: var(--ink-soft);
  text-align: left;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: var(--green);
  border-left-color: var(--signal);
  background: var(--paper);
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid currentColor;
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  border-color: var(--signal);
  background: var(--signal);
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("./assets/home-hero-v2.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 16, 0.92) 0%, rgba(5, 20, 16, 0.72) 35%, rgba(5, 20, 16, 0.2) 67%, rgba(5, 20, 16, 0.14) 100%);
}

body.is-ready .hero-photo {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0 104px;
}

.hero-copy {
  max-width: 660px;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy > :nth-child(1) { transition-delay: 180ms; }
.hero-copy > :nth-child(2) { transition-delay: 250ms; }
.hero-copy > :nth-child(3) { transition-delay: 320ms; }
.hero-copy > :nth-child(4) { transition-delay: 390ms; }
.hero-copy > :nth-child(5) { transition-delay: 460ms; }
.hero-copy > :nth-child(6) { transition-delay: 530ms; }
.hero-copy > :nth-child(7) { transition-delay: 600ms; }
.hero-copy > :nth-child(8) { transition-delay: 670ms; }

.hero .eyebrow,
.package-hero .eyebrow,
.detail-hero .eyebrow,
.image-band .eyebrow,
.contact .eyebrow,
.package-contact .eyebrow,
.detail-cta .eyebrow {
  color: var(--signal);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 64px;
  font-weight: 560;
  line-height: 1.14;
}

.hero h1 span {
  display: block;
}

.gold-rule {
  width: 74px;
  height: 3px;
  margin: 27px 0 20px;
  background: var(--signal);
}

.hero-sub {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.45;
}

.hero-text {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 730;
  text-transform: uppercase;
}

.route-line i {
  width: 42px;
  height: 1px;
  background: var(--signal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 190px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn b {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.btn:hover b,
.mini-link:hover b,
.text-link:hover::after,
.image-band-link:hover b,
.package-card-link:hover b {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary,
.btn-signal {
  color: var(--ink);
  border-color: var(--signal);
  background: var(--signal);
}

.btn-primary:hover,
.btn-signal:hover {
  border-color: #f0ca62;
  background: #f0ca62;
}

.btn-outline {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.btn-outline:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.quick-note {
  max-width: 590px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}

.quick-note > b {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(233, 187, 61, 0.14);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.quick-note strong {
  color: var(--white);
  white-space: nowrap;
}

.axis-label {
  position: absolute;
  z-index: 2;
  top: 45%;
  right: 28px;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.photo-card {
  position: absolute;
  z-index: 2;
  right: 58px;
  bottom: 50px;
  width: 270px;
  padding-left: 20px;
  color: var(--white);
  border-left: 3px solid var(--signal);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.photo-card span {
  display: block;
  color: var(--signal);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.photo-card strong {
  display: block;
  margin: 4px 0 5px;
  font-size: 16px;
}

.photo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.service-strip {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.service-strip article {
  position: relative;
  min-height: 292px;
  padding: 40px 38px 34px;
  border-right: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip article:hover {
  color: var(--white);
  background: var(--green-dark);
}

.service-strip article > span,
.flow-grid article > span,
.planning-grid article > span,
.detail-editorial article > span {
  color: var(--signal-dark);
  font-size: 12px;
  font-weight: 780;
}

.service-strip article:hover > span {
  color: var(--signal);
}

.service-strip h2 {
  margin: 13px 0 2px;
  font-size: 25px;
  font-weight: 620;
  line-height: 1.35;
}

.service-strip small {
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.service-strip article:hover small {
  color: var(--signal);
}

.service-strip p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.service-strip article:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.mini-link,
.image-band-link,
.package-card-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 720;
}

.service-strip article:hover .mini-link {
  color: var(--signal);
}

.mini-link b,
.image-band-link b,
.package-card-link b {
  font-size: 16px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 132px 0;
}

.section-title {
  max-width: 840px;
}

.section-title h2,
.package-contact h2,
.detail-cta h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 590;
  line-height: 1.3;
}

.section-lead {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-actions {
  margin-top: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 730;
}

.text-link::after {
  content: "→";
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link-light {
  color: var(--white);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px 100px;
}

.about-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.about-points {
  display: grid;
  margin-top: 34px;
  border-bottom: 1px solid var(--line);
}

.about-points span {
  position: relative;
  padding: 15px 0 15px 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 620;
}

.about-points span::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 1px;
  width: 8px;
  height: 2px;
  background: var(--signal);
}

.about .section-actions {
  grid-column: 2;
  margin-top: -8px;
}

.split {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(0, 700px);
  justify-content: center;
  gap: 72px;
  padding: 124px max(32px, calc((100% - var(--max)) / 2));
  background: var(--white);
}

.split-copy h2,
.image-band h2 {
  margin: 0;
  font-size: 39px;
  font-weight: 590;
  line-height: 1.34;
}

.split-copy > p:last-child,
.image-band > div > p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.route-board {
  display: grid;
  border-top: 1px solid var(--line);
}

.route-board article {
  display: grid;
  grid-template-columns: 78px 170px 1fr;
  align-items: start;
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.route-board article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
}

.route-board h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 650;
}

.route-board p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-band {
  width: min(1440px, 100%);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.image-band > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-band:hover > img {
  transform: scale(1.025);
}

.image-band > div {
  align-self: center;
  padding: 72px 64px;
}

.image-band > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.image-band ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 30px 0 35px;
  list-style: none;
  border-bottom: 1px solid var(--line-light);
}

.image-band li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
}

.image-band li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 1px;
  width: 8px;
  height: 2px;
  background: var(--signal);
}

.image-band-link {
  color: var(--signal);
}

.charter-grid,
.fleet-grid,
.flow-grid,
.planning-grid,
.special-grid {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.charter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.charter-grid article {
  min-height: 225px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.charter-grid article:last-child,
.fleet-grid article:last-child,
.flow-grid article:last-child,
.planning-grid article:last-child {
  border-right: 0;
}

.charter-grid h3,
.fleet-grid h3,
.flow-grid h3,
.planning-grid h3,
.special-grid h3 {
  margin: 0 0 15px;
  font-size: 21px;
  font-weight: 640;
  line-height: 1.4;
}

.charter-grid p,
.fleet-grid p,
.flow-grid p,
.planning-grid p,
.special-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quality {
  width: 100%;
  max-width: none;
  padding: 126px max(32px, calc((100% - var(--max)) / 2));
  background: var(--mist);
}

.quality > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.fleet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-grid article {
  min-height: 245px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.fleet-grid article > div > span {
  display: block;
  margin-bottom: 30px;
  color: var(--green);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.flow-grid,
.planning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid article,
.planning-grid article {
  min-height: 230px;
  padding: 31px 34px;
  border-right: 1px solid var(--line);
}

.flow-grid article > span,
.planning-grid article > span {
  display: block;
  margin-bottom: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 96px;
  padding: 104px max(42px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.contact h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  font-weight: 580;
  line-height: 1.32;
}

.contact > div > p:not(.eyebrow) {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-lines,
.company-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
}

.contact-lines a,
.company-lines a {
  color: var(--signal);
  font-size: 23px;
  font-weight: 640;
}

.contact-lines span,
.company-lines span {
  align-self: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contact-actions {
  align-self: center;
  display: grid;
  justify-items: start;
  gap: 20px;
  padding-left: 38px;
  border-left: 1px solid var(--line-light);
}

.contact-actions > p {
  margin: 0 !important;
}

.contact-actions .btn {
  width: 100%;
}

.footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1fr) minmax(250px, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 42px max(32px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a100e;
  font-size: 11px;
}

.footer > div {
  display: grid;
}

.footer strong {
  color: var(--white);
  font-size: 16px;
}

.footer span {
  font-size: 9px;
}

.footer p {
  margin: 0;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--signal);
}

.not-found-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--green-dark);
}

.not-found-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line-light);
}

.not-found-main {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 140px max(24px, calc((100% - var(--max)) / 2)) 80px;
  overflow: hidden;
}

.not-found-main::before,
.not-found-main::after {
  content: "";
  position: absolute;
  right: -8vw;
  width: 62vw;
  height: 1px;
  background: rgba(233, 187, 61, 0.28);
  transform: rotate(-33deg);
}

.not-found-main::before { top: 34%; }
.not-found-main::after { top: 55%; background: rgba(255, 255, 255, 0.13); }

.not-found-code {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--signal);
  font-size: 12px;
  font-weight: 780;
}

.not-found-main h1 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 20px 0;
  font-size: 58px;
  font-weight: 560;
  line-height: 1.2;
}

.not-found-main > p:not(.not-found-code) {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.not-found-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.package-hero,
.detail-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--green-dark);
}

.package-hero {
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(90deg, rgba(5, 20, 16, 0.9), rgba(5, 20, 16, 0.3) 65%, rgba(5, 20, 16, 0.12)), url("./assets/charter-packages-hero-v2.jpg");
  background-position: center;
  background-size: cover;
}

.package-hero-inner {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 180px 0 105px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease 180ms, transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body.is-ready .package-hero-inner {
  opacity: 1;
  transform: translateY(0);
}

.package-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 62px;
  font-weight: 560;
  line-height: 1.16;
}

.package-hero h1 span {
  display: block;
}

.package-hero-inner > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.package-summary,
.detail-facts {
  width: min(var(--max), calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.package-summary article,
.detail-facts article {
  min-height: 118px;
  display: grid;
  align-content: center;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.package-summary article:last-child,
.detail-facts article:last-child {
  border-right: 0;
}

.package-summary span,
.detail-facts span {
  color: var(--signal-dark);
  font-size: 11px;
  font-weight: 780;
}

.package-summary strong,
.detail-facts strong {
  font-size: 15px;
  font-weight: 650;
}

.package-subnav {
  position: sticky;
  z-index: 20;
  top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 247, 244, 0.95);
  backdrop-filter: blur(14px);
}

.package-subnav a {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.package-subnav a::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.package-subnav a:hover::after {
  transform: scaleX(1);
}

.package-list {
  display: grid;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.package-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  min-height: 290px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 220ms ease;
}

.package-card:hover {
  background: var(--white);
}

.package-card-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 38px 34px 0;
  border-right: 1px solid var(--line);
}

.package-card-head > span,
.special-card > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 18px 0 11px;
  font-size: 29px;
  font-weight: 610;
  line-height: 1.35;
}

.package-time {
  color: var(--signal-dark);
  font-size: 12px;
  font-weight: 720;
}

.package-card-link {
  margin-top: auto;
}

.package-card-body {
  padding: 40px 0 38px 48px;
}

.package-card-body > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.package-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.package-route i {
  position: relative;
  padding: 7px 10px 7px 18px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 11px;
  font-style: normal;
}

.package-route i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
}

.special-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.special-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.special-card:nth-child(2n) {
  border-right: 0;
}

.special-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.special-card h3 {
  margin-top: 24px;
}

.special-card .mini-link {
  margin-top: auto;
  padding-top: 25px;
}

.package-notes {
  width: 100%;
  max-width: none;
  padding: 126px max(32px, calc((100% - var(--max)) / 2));
  background: var(--mist);
}

.package-notes > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.package-contact {
  padding: 104px max(42px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--green-dark);
}

.package-contact h2 {
  max-width: 880px;
}

.package-contact > p {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.detail-hero {
  display: grid;
  align-items: end;
}

.detail-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 850ms ease, transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .detail-hero-image {
  opacity: 1;
  transform: scale(1);
}

.detail-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 16, 0.92), rgba(5, 20, 16, 0.54) 45%, rgba(5, 20, 16, 0.15) 75%);
}

.detail-hero-image > i {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 52px;
  width: 82px;
  height: 3px;
  background: var(--signal);
}

.detail-hero--services .detail-hero-image { background-image: url("./assets/services-hero-v2.jpg"); }
.detail-hero--airport .detail-hero-image { background-image: url("./assets/airport-transfer-hero-v2.jpg"); }
.detail-hero--business .detail-hero-image { background-image: url("./assets/business-chauffeur-hero-v2.jpg"); }
.detail-hero--tour .detail-hero-image { background-image: url("./assets/tour-charter-hero-v2.jpg"); }
.detail-hero--fleet .detail-hero-image { background-image: url("./assets/fleet-quality-hero-v2.jpg"); }
.detail-hero--vehicles .detail-hero-image { background-image: url("./assets/vehicles-hero-v2.jpg"); }
.detail-hero--standards .detail-hero-image { background-image: url("./assets/service-standards-hero-v2.jpg"); }
.detail-hero--company .detail-hero-image { background-image: url("./assets/company-hero-v2.jpg"); }
.detail-hero--flow .detail-hero-image { background-image: url("./assets/reservation-flow-hero-v2.jpg"); }
.detail-hero--contact .detail-hero-image { background-image: url("./assets/contact-hero-v2.jpg"); }
.detail-hero--routes .detail-hero-image { background-image: url("./assets/charter-routes-hero-v2.jpg"); }
.detail-hero--concierge .detail-hero-image { background-image: url("./assets/concierge-services-hero-v2.jpg"); }
.detail-hero--golf .detail-hero-image { background-image: url("./assets/golf-business-hero-v2.jpg"); }
.detail-hero--booking .detail-hero-image { background-image: url("./assets/booking-guide-hero-v2.jpg"); }

.detail-hero--plain .detail-hero-image {
  background-color: var(--green-dark);
  background-image:
    linear-gradient(122deg, transparent 0 66%, rgba(233, 187, 61, 0.11) 66% 66.4%, transparent 66.4%),
    linear-gradient(58deg, transparent 0 72%, rgba(255, 255, 255, 0.07) 72% 72.3%, transparent 72.3%);
}

.detail-hero--plain .detail-hero-image::after {
  background: linear-gradient(90deg, rgba(5, 20, 16, 0.45), rgba(5, 20, 16, 0.05));
}

.detail-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 170px 0 88px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease 180ms, transform 780ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body.is-ready .detail-hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
}

.detail-breadcrumb i {
  color: var(--signal);
  font-style: normal;
}

.detail-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 58px;
  font-weight: 560;
  line-height: 1.18;
}

.detail-lead {
  max-width: 650px;
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.detail-hero .text-link {
  color: var(--signal);
}

.detail-facts {
  position: relative;
  z-index: 3;
}

.detail-editorial,
.route-directory,
.detail-related {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.detail-editorial {
  padding: 110px 0;
}

.detail-editorial article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 28px;
  padding: 55px 0;
  border-top: 1px solid var(--line);
}

.detail-editorial article:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-editorial h2 {
  max-width: 760px;
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.35;
}

.detail-editorial p {
  max-width: 850px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.route-directory {
  padding: 116px 0 20px;
}

.route-directory-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px 80px;
  margin-bottom: 58px;
}

.route-directory-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.route-directory-head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 590;
  line-height: 1.3;
}

.route-directory-head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.route-directory-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.route-directory-list article {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 28px;
  min-height: 190px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, padding 200ms ease;
}

.route-directory-list article:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--white);
}

.route-directory-list article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 780;
}

.route-directory-list h3 {
  margin: 0 0 6px;
  font-size: 25px;
  font-weight: 620;
}

.route-directory-list b {
  color: var(--signal-dark);
  font-size: 11px;
}

.route-directory-list p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.route-directory-list article > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.route-directory-list article > a:hover {
  color: var(--ink);
  border-color: var(--signal);
  background: var(--signal);
}

.detail-related {
  padding: 0 0 116px;
}

.detail-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-related a {
  min-height: 150px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.detail-related a:last-child {
  border-right: 0;
}

.detail-related a:hover {
  color: var(--white);
  background: var(--green-dark);
}

.detail-related a > span {
  color: var(--signal-dark);
  font-size: 11px;
  font-weight: 780;
}

.detail-related a:hover > span {
  color: var(--signal);
}

.detail-related a strong {
  font-size: 17px;
  font-weight: 620;
}

.detail-related a b {
  color: var(--green);
  font-size: 18px;
  font-weight: 400;
}

.detail-related a:hover b {
  color: var(--signal);
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 90px;
  padding: 100px max(42px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.detail-cta > div:first-child > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.detail-cta > div:last-child {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-left: 38px;
  border-left: 1px solid var(--line-light);
}

.detail-cta > div:last-child > a:first-child {
  color: var(--signal);
  font-size: 26px;
  font-weight: 640;
}

.detail-cta > div:last-child > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.detail-cta .btn {
  margin-top: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-lang="en"] .hero-copy {
  max-width: 730px;
}

html[data-lang="en"] .hero h1 {
  max-width: 720px;
  font-size: 55px;
}

html[data-lang="ja"] .hero h1,
html[data-lang="ko"] .hero h1 {
  font-size: 58px;
}

html[data-lang="en"] .package-hero h1,
html[data-lang="en"] .detail-hero h1 {
  max-width: 840px;
  font-size: 53px;
}

html[data-lang="ja"] .detail-hero h1,
html[data-lang="ko"] .detail-hero h1 {
  font-size: 54px;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(233, 187, 61, 0.12); }
  50% { box-shadow: 0 0 0 8px rgba(233, 187, 61, 0.02); }
}

@media (max-width: 1280px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 28px;
    color: var(--ink);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    position: fixed;
    z-index: 95;
    top: 72px;
    right: 0;
    bottom: auto;
    width: min(440px, 100%);
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    display: block;
    padding: 20px 28px 42px;
    overflow-y: auto;
    color: var(--ink);
    border-left: 1px solid var(--line);
    background: var(--white);
    box-shadow: -20px 30px 60px rgba(7, 30, 24, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateX(28px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav > a,
  .site-nav > .nav-item > a,
  .is-scrolled .site-nav > a,
  .is-scrolled .site-nav > .nav-item > a,
  .is-open .site-nav > a,
  .is-open .site-nav > .nav-item > a {
    width: 100%;
    height: 54px;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav > a::after,
  .site-nav > .nav-item > a::after {
    right: auto;
    bottom: -1px;
    width: 54px;
  }

  .nav-item {
    position: relative;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 260ms ease, padding 260ms ease;
  }

  .nav-item:hover > .nav-submenu,
  .nav-item:focus-within > .nav-submenu {
    transform: none;
  }

  .nav-item.is-submenu-open > .nav-submenu {
    max-height: 520px;
    padding: 6px 0 12px;
    pointer-events: auto;
  }

  .nav-submenu a {
    min-height: 42px;
    padding: 8px 16px;
    border-left: 2px solid var(--mist);
    font-size: 13px;
  }

  .submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 7px;
    right: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .submenu-toggle span,
  .submenu-toggle span::after {
    width: 11px;
    height: 1px;
    display: block;
    background: var(--green);
    transition: transform 180ms ease;
  }

  .submenu-toggle span::after {
    content: "";
    transform: rotate(90deg);
  }

  .nav-item.is-submenu-open > .submenu-toggle span::after {
    transform: rotate(0);
  }

  .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:first-child,
  .menu-toggle > span:first-child::before,
  .menu-toggle > span:first-child::after {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle > span:first-child {
    position: relative;
  }

  .menu-toggle > span:first-child::before,
  .menu-toggle > span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle > span:first-child::before { top: -6px; }
  .menu-toggle > span:first-child::after { top: 6px; }

  .is-open .menu-toggle > span:first-child {
    background: transparent;
  }

  .is-open .menu-toggle > span:first-child::before {
    top: 0;
    transform: rotate(45deg);
  }

  .is-open .menu-toggle > span:first-child::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .axis-label {
    display: none;
  }

  .photo-card {
    right: 36px;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .package-hero-inner,
  .detail-hero-copy {
    width: min(100% - 56px, var(--max));
  }

  .photo-card {
    display: none;
  }

  .service-strip,
  .package-summary,
  .detail-facts,
  .detail-editorial,
  .route-directory,
  .detail-related,
  .section {
    width: min(100% - 48px, var(--max));
  }

  .about,
  .route-directory-head {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about .section-actions {
    grid-column: 1;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .image-band {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .image-band > img {
    min-height: 480px;
    max-height: 580px;
  }

  .image-band > div {
    padding: 64px 48px;
  }

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

  .fleet-grid article:nth-child(2) {
    border-right: 0;
  }

  .fleet-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact,
  .detail-cta {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-actions,
  .detail-cta > div:last-child {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .package-card-head {
    min-height: 230px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-card-body {
    padding-left: 0;
  }

  .detail-hero h1 {
    font-size: 50px;
  }
}

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

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

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

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .language-current {
    min-width: 56px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-photo::after {
    background: linear-gradient(90deg, rgba(5, 20, 16, 0.93), rgba(5, 20, 16, 0.57) 72%, rgba(5, 20, 16, 0.3));
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 132px 0 60px;
  }

  .hero h1,
  html[data-lang="en"] .hero h1,
  html[data-lang="ja"] .hero h1,
  html[data-lang="ko"] .hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .route-line {
    gap: 8px;
  }

  .route-line i {
    width: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    min-width: 0;
    min-height: 52px;
    gap: 12px;
    padding: 0 14px;
    font-size: 13px;
  }

  .quick-note {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 11px;
  }

  .quick-note > b {
    margin-top: 6px;
  }

  .service-strip,
  .package-summary,
  .detail-facts {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .service-strip article {
    min-height: 0;
    padding: 34px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .package-summary article,
  .detail-facts article {
    min-height: 86px;
    padding: 20px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-summary article:last-child,
  .detail-facts article:last-child {
    border-bottom: 0;
  }

  .section,
  .detail-editorial,
  .route-directory,
  .detail-related {
    width: calc(100% - 40px);
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section-title h2,
  .package-contact h2,
  .detail-cta h2,
  .route-directory-head h2 {
    font-size: 32px;
  }

  .section-lead {
    font-size: 15px;
  }

  .split {
    width: 100%;
    padding: 84px 20px;
  }

  .split-copy h2,
  .image-band h2 {
    font-size: 31px;
  }

  .route-board article {
    grid-template-columns: 52px 1fr;
    gap: 8px 16px;
  }

  .route-board p {
    grid-column: 2;
  }

  .image-band > img {
    min-height: 330px;
    max-height: 420px;
  }

  .image-band > div {
    padding: 54px 20px;
  }

  .charter-grid,
  .fleet-grid,
  .flow-grid,
  .planning-grid,
  .special-grid {
    grid-template-columns: 1fr;
  }

  .charter-grid article,
  .fleet-grid article,
  .flow-grid article,
  .planning-grid article,
  .special-card {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .charter-grid article:last-child,
  .fleet-grid article:last-child,
  .flow-grid article:last-child,
  .planning-grid article:last-child,
  .special-card:last-child {
    border-bottom: 0;
  }

  .quality,
  .package-notes {
    padding: 84px 20px;
  }

  .quality > *,
  .package-notes > * {
    width: 100%;
  }

  .contact,
  .package-contact,
  .detail-cta {
    padding: 78px 20px;
  }

  .contact h2 {
    font-size: 32px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 38px 20px;
  }

  .not-found-header {
    height: 72px;
    padding: 0 20px;
  }

  .not-found-main {
    padding: 120px 20px 60px;
  }

  .not-found-main h1 {
    font-size: 38px;
  }

  .not-found-actions {
    display: grid;
  }

  .package-hero,
  .detail-hero {
    min-height: 630px;
  }

  .package-hero {
    background-position: 58% center;
  }

  .package-hero-inner,
  .detail-hero-copy {
    width: calc(100% - 40px);
    padding: 132px 0 64px;
  }

  .package-hero h1,
  html[data-lang="en"] .package-hero h1 {
    font-size: 42px;
  }

  .package-hero-inner > p:last-child {
    font-size: 14px;
  }

  .package-subnav {
    top: 72px;
    justify-content: flex-start;
    padding: 0 8px;
    overflow-x: auto;
  }

  .package-subnav a {
    min-height: 52px;
    padding: 0 14px;
  }

  .package-card {
    min-height: 0;
  }

  .package-card-head {
    min-height: 215px;
    padding: 30px 0;
  }

  .package-card h3 {
    font-size: 25px;
  }

  .package-card-body {
    padding: 30px 0 38px;
  }

  .package-card-body > p {
    font-size: 14px;
  }

  .detail-hero-image::after {
    background: linear-gradient(90deg, rgba(5, 20, 16, 0.93), rgba(5, 20, 16, 0.55) 80%, rgba(5, 20, 16, 0.3));
  }

  .detail-breadcrumb {
    margin-bottom: 38px;
  }

  .detail-hero h1,
  html[data-lang="en"] .detail-hero h1,
  html[data-lang="ja"] .detail-hero h1,
  html[data-lang="ko"] .detail-hero h1 {
    font-size: 39px;
  }

  .detail-lead {
    font-size: 14px;
  }

  .detail-editorial article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 40px 0;
  }

  .detail-editorial h2 {
    font-size: 27px;
  }

  .detail-editorial p {
    font-size: 14px;
  }

  .route-directory {
    padding-top: 84px;
  }

  .route-directory-head {
    gap: 22px;
  }

  .route-directory-list article {
    grid-template-columns: 1fr 42px;
    gap: 17px;
    min-height: 0;
    padding: 30px 0;
  }

  .route-directory-list article > span {
    grid-column: 1 / -1;
  }

  .route-directory-list h3 {
    font-size: 22px;
  }

  .detail-related > div {
    grid-template-columns: 1fr;
  }

  .detail-related a {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-related a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 440px) {
  .brand span {
    max-width: 122px;
  }

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

  .hero h1,
  html[data-lang="en"] .hero h1,
  html[data-lang="ja"] .hero h1,
  html[data-lang="ko"] .hero h1 {
    font-size: 35px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-note strong {
    white-space: normal;
  }

  .package-hero h1,
  html[data-lang="en"] .package-hero h1,
  .detail-hero h1,
  html[data-lang="en"] .detail-hero h1,
  html[data-lang="ja"] .detail-hero h1,
  html[data-lang="ko"] .detail-hero h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  .hero-copy > *,
  .hero-photo,
  .package-hero-inner,
  .detail-hero-copy,
  .detail-hero-image {
    opacity: 1;
    transform: none;
  }
}
