:root {
  --bg: #f7faff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --primary: #0b4f9c;
  --primary-dark: #083b74;
  --accent: #2f80ed;
  --text: #132238;
  --muted: #64748b;
  --line: #dbe7f5;
  --shadow: 0 16px 40px rgba(15, 49, 92, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --header: 92px;
  --logo-height: calc(var(--header) - 14px);
  --hero-photo: url("../images/hero/slide-fuji.png");
  font-family: Inter, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(247, 250, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 231, 245, .85);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 6px 0;
  font-weight: 800;
  letter-spacing: .02em;
}
.logo-img {
  width: auto;
  height: var(--logo-height);
  max-width: min(360px, 62vw);
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--surface-soft);
  color: var(--primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang button {
  border: 0;
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.lang button.active {
  color: #fff;
  background: var(--primary);
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11,79,156,.2);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-primary:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--accent); transform: translateY(-1px); }
section { padding: 92px 0; }
.news-section {
  background: #fbfdff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 49, 92, .1);
}
.news-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.news-tag-expo {
  background: #eef5ff;
  color: var(--primary);
}
.news-tag-update {
  background: #ecfdf5;
  color: #047857;
}
.news-tag-mice {
  background: #fff7ed;
  color: #c2410c;
}
.news-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.news-card h3 {
  font-size: 18px;
  margin: 0;
}
.news-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.news-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.news-link:hover {
  color: var(--accent);
}
.hero {
  position: relative;
  padding: 72px 0 36px;
  color: #fff;
  background: none;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 9s ease;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(8, 43, 83, 0.82) 0%, rgba(11, 79, 156, 0.55) 42%, rgba(247, 250, 255, 0.88) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(8, 43, 83, 0.35); }
.hero .lead { color: rgba(255, 255, 255, 0.92); max-width: none; }
.hero-left .home-highlight-map .hero-markets-title {
  color: var(--primary-dark);
}
.hero-note { color: rgba(255, 255, 255, 0.78); }
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}
.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  color: var(--text);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-card h3,
.hero-card p { color: var(--text); }
.hero-media {
  margin: -8px -8px 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b2a4a;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 40px rgba(8, 43, 83, 0.18);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 32px 48px;
  align-items: stretch;
}
.hero-left,
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  height: 100%;
}
.hero-left .home-highlight-map,
.hero-right .home-highlight-markets {
  margin-top: auto;
}
.home-highlight-map,
.home-highlight-markets {
  align-self: stretch;
}
.home-highlight-markets {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.home-highlight-markets::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f4f8fc url("../images/markets-global-network.png") center / cover no-repeat;
}
.home-highlight-markets::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.28);
}
.home-highlight-markets > * {
  position: relative;
  z-index: 2;
}
.home-highlight-markets .hero-markets-title,
.home-highlight-markets .hero-markets-subtitle,
.home-highlight-markets .hero-markets-list li {
  text-shadow: 0 0 14px #fff, 0 0 6px rgba(255, 255, 255, 0.98), 0 1px 4px rgba(255, 255, 255, 0.95);
}
.home-highlight-markets .hero-markets-col {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 8px 10px;
}
.home-highlight-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(8, 43, 83, 0.14);
  backdrop-filter: blur(10px);
}
.home-highlight-map {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-highlight-map .hero-markets-map {
  flex: 1;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 8px 10px;
}
.home-highlight-map .hero-markets-map img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  min-height: 210px;
  object-fit: contain;
  object-position: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}
h1, h2, h3 { line-height: 1.18; margin: 0; letter-spacing: -.03em; }
h1 { font-size: clamp(40px, 5.2vw, 72px); max-width: 760px; }
h2 { font-size: clamp(30px, 3.4vw, 46px); }
h3 { font-size: 21px; }
.lead {
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  color: #475569;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}
.metric strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  line-height: 1.1;
}
.metric span { color: var(--muted); font-size: 13px; }
.metric-wide {
  grid-column: 1 / -1;
}
.home-highlight-markets .hero-markets-columns {
  margin-bottom: 0;
  gap: 10px;
}
.hero-markets-title {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--primary-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
}
.hero-markets-title-en,
.hero-markets-subtitle-en {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.hero-markets-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}
.hero-markets-col + .hero-markets-col {
  border-left: 1px solid var(--line);
  padding-left: 10px;
}
.hero-markets-subtitle {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-markets-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.hero-markets-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.hero-markets-flag {
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}
.hero-markets-map {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f3f6fa;
}
.hero-markets-map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,49,92,.05);
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--primary);
  margin-bottom: 18px;
}
.card p { color: var(--muted); margin: 12px 0 0; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.about {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.about-expo {
  margin-top: 48px;
}
.about-expo-head {
  max-width: 720px;
  margin-bottom: 24px;
}
.about-expo-head h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 10px;
}
.about-expo-head p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.about-expo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-expo-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-expo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-expo-card figcaption {
  padding: 14px 16px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  background: #fbfdff;
  border-top: 1px solid var(--line);
}
.about-expo-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-expo-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 49, 92, .12);
}
.about-expo-body {
  padding: 14px 16px 16px;
  background: #fbfdff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.about-expo-body p,
.about-expo-body h4,
.about-expo-body h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}
.expo-list-page .expo-list-head {
  margin-bottom: 28px;
}
.expo-list-page .expo-list-head h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
}
.expo-list-page .about-expo-grid {
  margin-top: 8px;
}
.expo-cover {
  position: relative;
  min-height: clamp(360px, 52vw, 520px);
  color: #fff;
  overflow: hidden;
}
.expo-cover-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.expo-cover-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
  will-change: opacity, transform;
}
.expo-cover-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.expo-cover-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.expo-cover-slide-upcoming {
  background: linear-gradient(135deg, #0b4f9c 0%, #2f80ed 55%, #7eb8ff 100%);
}
.expo-cover-slide-nagano {
  background: linear-gradient(135deg, #0f3a5c 0%, #1d6b8a 45%, #5ba4c9 100%);
}
.expo-cover-slide-jnto {
  background: linear-gradient(135deg, #083b74 0%, #0b4f9c 50%, #4d9aff 100%);
}
.expo-cover-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(8, 43, 83, 0.88) 0%, rgba(11, 79, 156, 0.62) 45%, rgba(8, 43, 83, 0.35) 100%);
  pointer-events: none;
}
.expo-cover-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(360px, 52vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 0 32px;
}
.expo-cover-back {
  align-self: flex-start;
  margin-bottom: auto;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.expo-cover-back:hover {
  background: rgba(255, 255, 255, 0.24);
}
.expo-cover-captions {
  position: relative;
  min-height: 180px;
  max-width: 720px;
}
.expo-cover-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.expo-cover-caption.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.expo-cover-caption .about-expo-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.expo-cover-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.expo-cover-caption h1 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  max-width: 18ch;
}
.expo-cover-date {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.expo-cover-caption .btn-primary {
  margin-top: 6px;
}
.expo-cover-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.expo-cover-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}
.expo-cover-dot.is-active {
  width: 28px;
  background: #fff;
}
.expo-cover-dot:hover {
  transform: scale(1.08);
}
.expo-list-section {
  padding: 56px 0 92px;
  background: var(--bg);
}
.expo-list-section .expo-list-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
}
.about-expo-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.about-expo-media {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(135deg, #e8f2ff 0%, #f5f9ff 100%);
}
.about-expo-media-upcoming time {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-dark);
}
.about-expo-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #dbeafe;
  color: #1d4ed8;
}
.expo-detail-page .legal-content {
  max-width: 760px;
}
.expo-detail-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px;
}
.expo-detail-page .news-tag {
  margin-bottom: 14px;
}
.expo-detail-photo {
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.expo-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
}
.check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 3px;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.tab-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.destination-card-upgrade::after {
  content: "UPGRADE";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a227, #f0d060);
  color: #1a2744;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.dest-poster-badge-upgrade {
  background: linear-gradient(135deg, #a8831a, #d4af37);
}
.destination {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.destination::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 43, 83, 0.15) 0%, rgba(8, 43, 83, 0.55) 55%, rgba(8, 43, 83, 0.88) 100%);
  pointer-events: none;
}
.destination img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.destination-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.destination-content h3 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.destination-content span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  display: block;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
a.destination-card {
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
a.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
a.destination-card:hover img { transform: scale(1.04); }
.destination-card img { transition: transform .35s ease; }
.dest-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  opacity: 1 !important;
  text-shadow: none;
}
.dest-page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--primary);
}
.dest-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-page-hero .container {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}
.dest-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,43,83,.25), rgba(8,43,83,.82));
}
.dest-page-hero h1 { font-size: clamp(36px, 4vw, 56px); max-width: 720px; }
.dest-page-hero p { max-width: 640px; margin-top: 14px; opacity: .9; font-size: 18px; }
.dest-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-size: 13px;
  font-weight: 800;
}
.dest-back:hover { background: rgba(255,255,255,.25); }
.dest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.dest-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 800;
}
.dest-detail { padding: 72px 0; }
.dest-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.dest-side {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}
.dest-side h3 { margin-bottom: 14px; }
.dest-highlights {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dest-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-size: 14px;
}
.dest-highlights li::before {
  content: "•";
  color: var(--primary);
  font-weight: 800;
}
.dest-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.dest-poster-section { padding: 72px 0; }
.dest-poster-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 40px;
  align-items: start;
}
.dest-poster-frame {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
.dest-poster-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0b2a4a;
}
.dest-poster-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,79,156,.88);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.dest-poster-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-top: 8px;
}
.dest-itinerary-section {
  padding: 0 0 92px;
}
.itinerary-cards {
  display: grid;
  gap: 18px;
}
.itinerary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,49,92,.05);
}
.itinerary-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.itinerary-day-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.itinerary-card-head h3 {
  font-size: 20px;
  margin: 0;
}
.itinerary-schedule {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.itinerary-schedule li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: #334155;
  font-size: 14px;
}
.itinerary-schedule time {
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
}
.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.day-tag {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.dest-pricing-section {
  padding: 0 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.pricing-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.pricing-cell {
  text-align: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.pricing-cell.featured {
  border-color: var(--accent);
  background: #eef5ff;
  box-shadow: 0 0 0 3px rgba(47,128,237,.12);
}
.pricing-pax {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.pricing-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 8px;
}
.pricing-price {
  display: block;
  font-size: 15px;
  color: #132238;
}
.dest-includes-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.dest-includes-block h3,
.dest-spots-block h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.dest-includes-block ul {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  display: grid;
  gap: 8px;
}
.dest-spots-block {
  margin-top: 20px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--text);
  background: #fbfdff;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,128,237,.12);
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 14px;
  font-weight: 700;
}
.form-status.success { color: #047857; }
.form-status.error { color: #b91c1c; }
footer {
  padding: 42px 0;
  background: #082b53;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: grid;
  gap: 6px;
}
.footer-brand strong { color: #fff; display: block; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-nav a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav a:hover { color: #fff; }
.footer-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.legal-main {
  padding: 48px 0 92px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.legal-back:hover { background: #e3efff; }
.legal-main h1 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 28px;
}
.legal-content {
  max-width: 820px;
  color: #334155;
}
.legal-content h2 {
  font-size: 22px;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.legal-content h3 {
  font-size: 17px;
  margin: 22px 0 10px;
  color: var(--primary);
}
.legal-content p { margin: 0 0 14px; }
.legal-content ol {
  margin: 0 0 14px;
  padding-left: 1.4em;
}
.legal-content li { margin-bottom: 8px; }
.legal-signoff {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  line-height: 1.9;
}
.legal-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.info-table {
  margin: 0 0 24px;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--line);
}
.info-table > div:last-child { border-bottom: 0; }
.info-table dt {
  margin: 0;
  padding: 14px 16px;
  background: var(--surface-soft);
  font-weight: 800;
  color: var(--primary);
}
.info-table dd {
  margin: 0;
  padding: 14px 16px;
  background: #fff;
}
.contact-card {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
  border: 0;
  padding: 0;
}
.legal-actions { margin-top: 28px; }
@media (max-width: 620px) {
  .info-table > div { grid-template-columns: 1fr; }
  .info-table dt { border-bottom: 1px solid var(--line); }
  .footer-nav { flex-direction: column; gap: 10px; }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
}
.footer-links a {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: #fff; }
.footer-social {
  margin-top: 14px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.footer-social-link:hover { color: #fff; }
.footer-social-icon { flex-shrink: 0; }
.legal-page {
  padding: 48px 0 92px;
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.97) 0%, #fff 28%),
    var(--hero-photo) center top / cover no-repeat fixed;
}
.legal-content {
  max-width: 820px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.legal-back:hover { background: var(--line); }
.legal-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 28px;
}
.legal-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-section:last-of-type { border-bottom: 0; }
.legal-section h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--primary);
}
.legal-section h3 {
  font-size: 17px;
  margin: 18px 0 10px;
}
.legal-section p,
.legal-section li {
  color: #334155;
  font-size: 15px;
  line-height: 1.85;
}
.legal-section ol {
  margin: 10px 0;
  padding-left: 1.4em;
}
.legal-section ol li { margin-bottom: 8px; }
.legal-signoff {
  margin-top: 36px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  line-height: 1.9;
}
.info-table {
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--line);
}
.info-table > div:last-child { border-bottom: 0; }
.info-table dt {
  margin: 0;
  padding: 16px 18px;
  background: var(--surface-soft);
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
}
.info-table dd {
  margin: 0;
  padding: 16px 18px;
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}
.info-table dd p { margin: 0 0 12px; }
.info-table dd p:last-child { margin-bottom: 0; }
.info-table a { color: var(--primary); text-decoration: underline; }
.contact-card {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.contact-card h2 {
  font-size: 20px;
  margin: 0 0 18px;
}
.legal-actions { margin-top: 28px; }
@media (max-width: 620px) {
  .info-table > div { grid-template-columns: 1fr; }
  .info-table dt { border-bottom: 1px solid var(--line); }
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
}
svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 960px) {
  .hero-grid, .split, .contact-wrap, .dest-layout, .dest-poster-grid {
    grid-template-columns: 1fr;
  }
  .destinations {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .about-expo-grid {
    grid-template-columns: 1fr;
  }
  .hero-markets-columns {
    grid-template-columns: 1fr;
  }
  .hero-left .home-highlight-map,
  .hero-right .home-highlight-markets {
    margin-top: 18px;
  }
  .home-highlight-map .hero-markets-map {
    min-height: 180px;
  }
  .home-highlight-map .hero-markets-map img {
    max-height: 200px;
    min-height: 170px;
  }
  .hero-markets-col + .hero-markets-col {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .service-detail { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
}
@media (max-width: 620px) {
  :root { --header: 76px; --logo-height: calc(var(--header) - 12px); }
  .container { width: min(100% - 28px, var(--max)); }
  section { padding: 68px 0; }
  .hero {
    padding-top: 64px;
  }
  .expo-cover-caption h1 {
    max-width: none;
  }
  .expo-cover-captions {
    min-height: 210px;
  }
  .hero-slide { transition: opacity 1s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
  .legal-page { background-attachment: scroll; }
  .destinations, .metric-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .legal-content { padding: 24px 20px; }
  .logo-img { max-width: min(280px, 68vw); }
  .nav-actions .btn { display: none; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .hero-actions .btn { width: 100%; }
}
