:root {
  --ink: #1d282d;
  --muted: #607076;
  --paper: #f4f7f5;
  --surface: #ffffff;
  --line: #d9e4e1;
  --deep: #14313b;
  --sea: #0c6a79;
  --green: #4f927f;
  --coral: #d66f58;
  --gold: #be8d34;
  --blue: #457aa8;
  --shadow: 0 18px 44px rgba(18, 36, 42, 0.12);
  --soft-shadow: 0 10px 26px rgba(18, 36, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "BIZ UDPGothic", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.62;
}

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

button {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 31, 0.84) 0%, rgba(10, 24, 31, 0.62) 44%, rgba(10, 24, 31, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 24, 31, 0.20) 0%, rgba(10, 24, 31, 0.18) 58%, rgba(244, 247, 245, 1) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover {
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 15vh auto 0;
  max-width: 780px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding-bottom: 12vh;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd28b;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1.02;
}

h1 span {
  display: inline-block;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.1vw, 1.24rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

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

.primary-action,
.secondary-action,
.download-button,
.card-actions a,
.food-card a,
.map-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
  transition: transform 160ms ease, background-color 160ms ease;
}

.primary-action,
.download-button {
  color: var(--deep);
  background: #fff;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.primary-action:hover,
.secondary-action:hover,
.download-button:hover,
.card-actions a:hover,
.food-card a:hover,
.map-links a:hover {
  transform: translateY(-1px);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.overview {
  padding-top: 28px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.overview-grid article,
.day-card,
.hotel-card,
.food-card,
.transport-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.overview-grid article {
  padding: 18px;
}

.overview-grid span,
.card-kicker,
.day-head span {
  display: block;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.overview-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--deep);
  font-size: 1.08rem;
}

.overview-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-head {
  margin-bottom: 22px;
}

.section-lead {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.12rem;
  line-height: 1.28;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.day-card {
  overflow: hidden;
}

.day-head {
  padding: 18px 20px;
  background: linear-gradient(135deg, #f9fcfb, #eef5f2);
  border-bottom: 1px solid var(--line);
}

.day-head h3 {
  margin-top: 4px;
}

.schedule-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid #edf2f0;
}

.schedule-list li:last-child {
  border-bottom: 0;
}

.schedule-list time {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.92rem;
}

.map-section {
  padding-top: 46px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  gap: 16px;
}

.map-panel {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #dfe9e6;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.place-list {
  display: grid;
  gap: 10px;
}

.place-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.place-button.is-active {
  border-color: rgba(12, 106, 121, 0.5);
  background: #eef8f6;
}

.place-button span {
  display: block;
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 900;
}

.place-button strong {
  display: block;
  margin-top: 2px;
  color: var(--deep);
}

.place-button small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.map-links {
  margin-top: 12px;
}

.map-links a,
.card-actions a,
.food-card a {
  border: 1px solid #c9d9d6;
  color: var(--sea);
  background: #f6fbf9;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hotel-card {
  padding: 22px;
}

.hotel-card h3 {
  margin-top: 5px;
  font-size: 1.35rem;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
}

.info-list dt {
  color: var(--gold);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.food-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 18px;
}

.food-card.featured {
  border-color: rgba(214, 111, 88, 0.42);
  background: linear-gradient(180deg, #fff, #fff7f4);
}

.food-card h3 {
  margin-top: 5px;
}

.dish {
  margin: 9px 0 0;
  color: var(--gold);
  font-weight: 900;
}

.food-card p:not(.dish) {
  color: var(--muted);
  font-size: 0.94rem;
}

.food-card a {
  margin-top: auto;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.transport-grid article {
  padding: 18px;
}

.transport-grid h3 {
  font-size: 1rem;
}

.transport-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.downloads {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.download-button {
  color: #fff;
  background: var(--deep);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .overview-grid,
  .day-grid,
  .hotel-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .food-grid,
  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-panel,
  .map-panel iframe {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .topbar {
    padding: 14px 0;
  }

  .hero-copy {
    margin-top: 88px;
  }

  .hero-facts span {
    width: 100%;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 42px 0;
  }

  .overview-grid,
  .food-grid,
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .schedule-list li {
    grid-template-columns: 74px 1fr;
    padding: 12px 14px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }

  .downloads {
    align-items: stretch;
    flex-direction: column;
  }

  .download-button {
    width: 100%;
  }
}

@media print {
  .hero-image,
  .hero-shade,
  .topbar,
  .hero-actions,
  .map-section,
  .footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: #fff;
  }

  .hero-copy {
    margin: 0;
    padding: 24px;
    max-width: none;
  }

  .hero .eyebrow,
  .lead {
    color: var(--ink);
  }

  .section {
    padding: 20px 0;
  }
}
