:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --ink: #0f172a;
  --mute: #64748b;
  --line: #e5eaf0;
  --mark: #0891b2;
  --mark-hover: #0e7490;
  --sea: #eef6f9;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  --serif: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header: 4.25rem;
  --space: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100%;
  overflow-x: hidden;
}

body.is-menu {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--mark);
  outline-offset: 3px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 80;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid,
.page-inner .site-header {
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  text-decoration: none;
}

.logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  background: var(--mark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--mark);
  border-radius: 10px;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--mark-hover);
  border-color: var(--mark-hover);
}

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

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.site-header .btn {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  margin-inline: auto;
  position: relative;
}

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

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f172a;
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img,
.hero-media video {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease;
}

.hero-media img.is-on,
.hero-media video.is-on {
  opacity: 1;
  z-index: 1;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero-media.is-motion img.is-on {
  animation: ken 22s linear infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header) + 2rem) 0 4rem;
}

.hero-copy p.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: #e0f2fe;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  max-width: 12em;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero .lead {
  max-width: 28rem;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-head p {
  color: var(--mute);
  max-width: 28rem;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.tour-card {
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.tour-card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eef3;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card:hover img,
.tour-card:focus-visible img {
  transform: scale(1.06);
}

.tour-card .body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.tour-card h3 {
  font-size: 1.35rem;
}

.meta {
  color: var(--mute);
  font-size: 0.88rem;
}

.more {
  margin-top: auto;
  padding-top: 0.7rem;
  font-weight: 700;
  color: var(--mark);
}

.about-band {
  background: var(--sea);
  color: var(--ink);
}

.about-band .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.facts div {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.contact-strip {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 1.6rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--mute);
}

.legal a {
  color: var(--mark);
  font-weight: 600;
}

.page-hero {
  padding: calc(var(--header) + 2.2rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.tour-hero {
  position: relative;
  height: min(68svh, 620px);
  min-height: 280px;
  overflow: hidden;
  background: #0f172a;
}

.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 24s linear infinite alternate;
}

.tour-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 2rem;
  padding: 2.2rem 0 4rem;
}

.tour-layout h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.2rem 0 1.4rem;
}

.specs div {
  background: var(--card);
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.specs dt {
  color: var(--mute);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.specs dd {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.tour-layout h2 {
  font-size: 1.35rem;
  margin: 1.4rem 0 0.5rem;
}

.tour-layout ul {
  margin: 0;
  padding-left: 1.1rem;
}

.tour-layout li + li {
  margin-top: 0.3rem;
}

.book-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  position: sticky;
  top: calc(var(--header) + 1rem);
}

.book-box .btn,
.book-box .btn-ghost {
  width: 100%;
}

.book-box .btn-ghost {
  margin-top: 0.55rem;
}

.book-box p {
  color: var(--mute);
  margin: 0.35rem 0 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-list span {
  color: var(--mute);
}

@media (max-width: 960px) {
  .tour-grid,
  .related,
  .footer-grid,
  .about-band .wrap,
  .tour-layout {
    grid-template-columns: 1fr 1fr;
  }

  .tour-layout,
  .about-band .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .book-box {
    position: static;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: calc(var(--header) + 1rem);
    padding-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
}

@media (max-width: 720px) {
  .tour-layout .book-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 25;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  }

  .tour-layout .book-box h2,
  .tour-layout .book-box p {
    display: none;
  }

  .tour-layout .book-box .btn,
  .tour-layout .book-box .btn-ghost {
    width: auto;
    flex: 1;
    margin-top: 0;
  }

  .tour-layout {
    padding-bottom: 6.5rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 auto;
    background: var(--card);
    color: var(--ink);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn {
    margin-top: 0.9rem;
    color: var(--white);
  }

  .tour-grid,
  .related,
  .facts,
  .specs,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 2.5rem;
  }

  .section-head {
    display: block;
  }
}

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

  .hero-media.is-motion img.is-on,
  .tour-hero img,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
