/* MIDORIZO — Tour & Travel
   Prefix: mz- | Sky blue + yellow accents | Outfit + Noto Sans JP */

:root {
  --mz-sky: #1B6CA8;
  --mz-sky-soft: #E8F4FC;
  --mz-sky-mid: #4A9AD4;
  --mz-teal: #0E7C7B;
  --mz-teal-deep: #0A5F5E;
  --mz-yellow: #F5C518;
  --mz-yellow-hover: #E0B210;
  --mz-ink: #16324A;
  --mz-muted: #5A7388;
  --mz-paper: #FFFFFF;
  --mz-mist: #F7FBFE;
  --mz-line: #D4E6F2;
  --mz-radius: 14px;
  --mz-radius-pill: 999px;
  --mz-shadow: 0 12px 40px rgba(27, 108, 168, 0.12);
  --mz-font: "Outfit", "Noto Sans JP", sans-serif;
  --mz-jp: "Noto Sans JP", "Outfit", sans-serif;
  --mz-wrap: min(1120px, calc(100% - 2.5rem));
  --mz-header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--mz-jp);
  font-weight: 400;
  color: var(--mz-ink);
  background: var(--mz-mist);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

.mz-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mz-yellow);
  color: var(--mz-ink);
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.mz-skip:focus {
  left: 1rem;
  top: 1rem;
}

.mz-wrap {
  width: var(--mz-wrap);
  margin-inline: auto;
}

/* ——— Header ——— */
.mz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 254, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mz-header.is-scrolled {
  border-bottom-color: var(--mz-line);
  box-shadow: 0 4px 24px rgba(27, 108, 168, 0.06);
}
.mz-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--mz-header-h);
}

.mz-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mz-logo__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, var(--mz-sky) 0%, var(--mz-teal) 100%);
  position: relative;
  flex-shrink: 0;
}
.mz-logo__mark::after {
  content: "";
  position: absolute;
  inset: 0.45rem 0.4rem auto;
  height: 0.2rem;
  border-radius: 2px;
  background: var(--mz-yellow);
}
.mz-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.mz-logo__en {
  font-family: var(--mz-font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--mz-sky);
}
.mz-logo__jp {
  font-size: 0.7rem;
  color: var(--mz-muted);
  letter-spacing: 0.12em;
}

.mz-nav {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.mz-nav a {
  color: var(--mz-muted);
  transition: color 0.2s;
}
.mz-nav a:hover,
.mz-nav a[aria-current="page"] {
  color: var(--mz-sky);
}

.mz-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mz-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.35rem;
  border-radius: var(--mz-radius-pill);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.mz-cta--yellow {
  background: var(--mz-yellow);
  color: var(--mz-ink);
}
.mz-cta--yellow:hover {
  background: var(--mz-yellow-hover);
  transform: translateY(-1px);
}
.mz-cta--nav {
  display: none;
  background: var(--mz-yellow);
  color: var(--mz-ink);
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}
.mz-cta--nav:hover {
  background: var(--mz-yellow-hover);
}
.mz-cta--ghost {
  background: transparent;
  border-color: rgba(27, 108, 168, 0.35);
  color: var(--mz-sky);
}
.mz-cta--ghost:hover {
  border-color: var(--mz-sky);
  background: rgba(27, 108, 168, 0.06);
}
.mz-cta--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.mz-cta--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mz-cta--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.mz-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  justify-self: end;
}
.mz-menu-btn span {
  display: block;
  height: 2px;
  width: 1.35rem;
  background: var(--mz-sky);
  border-radius: 2px;
  margin-inline: auto;
}

.mz-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 50, 74, 0.45);
}
.mz-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  background: var(--mz-paper);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  animation: mz-slide-in 0.28s ease;
}
@keyframes mz-slide-in {
  from { transform: translateX(12%); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}
.mz-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mz-drawer__close {
  border: 0;
  background: var(--mz-sky-soft);
  color: var(--mz-sky);
  padding: 0.4rem 0.75rem;
  border-radius: var(--mz-radius-pill);
  font-size: 0.8rem;
  cursor: pointer;
}
.mz-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.mz-drawer__nav a:hover {
  color: var(--mz-sky);
}
.mz-drawer__meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--mz-muted);
}

/* ——— Typography blocks ——— */
.mz-eyebrow {
  font-family: var(--mz-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mz-sky);
  margin-bottom: 0.5rem;
}
.mz-eyebrow--light {
  color: var(--mz-yellow);
}
.mz-title {
  font-family: var(--mz-font);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--mz-ink);
  margin-bottom: 0.65rem;
}
.mz-title--light {
  color: #fff;
}
.mz-lede {
  color: var(--mz-muted);
  max-width: 36rem;
  font-size: 0.98rem;
}
.mz-lede--light {
  color: rgba(255, 255, 255, 0.88);
}
.mz-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mz-sky);
  border-bottom: 2px solid var(--mz-yellow);
  padding-bottom: 0.1rem;
  transition: color 0.2s;
}
.mz-text-link:hover {
  color: var(--mz-teal);
}

.mz-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.mz-section--sky {
  background: linear-gradient(180deg, var(--mz-sky-soft) 0%, var(--mz-mist) 100%);
}
.mz-section--mist {
  background: var(--mz-paper);
}
.mz-section--teal {
  background: linear-gradient(135deg, var(--mz-teal) 0%, var(--mz-sky) 100%);
  color: #fff;
}
.mz-section__head {
  margin-bottom: 2.25rem;
}
.mz-section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* ——— Split Hero ——— */
.mz-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(92vh, 720px);
  overflow: hidden;
  background: linear-gradient(160deg, #B8DCF0 0%, #E8F4FC 42%, #F7FBFE 100%);
}
.mz-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.mz-hero__eyebrow {
  font-family: var(--mz-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mz-teal);
  margin-bottom: 0.75rem;
  animation: mz-fade-up 0.7s ease both;
}
.mz-hero__brand {
  font-family: var(--mz-font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.06em;
  color: var(--mz-sky);
  line-height: 1;
  margin-bottom: 0.85rem;
  animation: mz-fade-up 0.75s 0.08s ease both;
}
.mz-hero__title {
  margin-bottom: 1rem;
  animation: mz-fade-up 0.8s 0.14s ease both;
}
.mz-hero__title-ja {
  display: block;
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--mz-ink);
}
.mz-hero__title-en {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--mz-font);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mz-sky-mid);
}
.mz-hero__lede {
  font-size: 1.05rem;
  color: var(--mz-muted);
  margin-bottom: 1.75rem;
  max-width: 22rem;
  animation: mz-fade-up 0.85s 0.2s ease both;
}
.mz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: mz-fade-up 0.9s 0.26s ease both;
}
.mz-hero__right {
  position: relative;
  min-height: 280px;
}
.mz-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.mz-hero__float {
  position: absolute;
  left: 1rem;
  bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem 1.1rem;
  border-radius: var(--mz-radius);
  box-shadow: var(--mz-shadow);
  border-left: 4px solid var(--mz-yellow);
  max-width: 11rem;
}
.mz-hero__float-label {
  font-family: var(--mz-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mz-sky);
}
.mz-hero__float-place {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0.15rem 0;
}
.mz-hero__float-meta {
  font-size: 0.78rem;
  color: var(--mz-muted);
}
.mz-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 48px;
  z-index: 3;
  pointer-events: none;
}

@keyframes mz-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Destination cards ——— */
.mz-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mz-dest-card {
  display: flex;
  flex-direction: column;
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 108, 168, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mz-dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mz-shadow);
}
.mz-dest-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.mz-dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mz-dest-card:hover .mz-dest-card__media img {
  transform: scale(1.05);
}
.mz-dest-card__body {
  padding: 1rem 1.1rem 1.25rem;
}
.mz-dest-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mz-teal);
  letter-spacing: 0.06em;
}
.mz-dest-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.2rem 0;
}
.mz-dest-card__en {
  font-family: var(--mz-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--mz-sky-mid);
  margin-bottom: 0.35rem;
}
.mz-dest-card__meta {
  font-size: 0.85rem;
  color: var(--mz-muted);
}

/* ——— Packages ——— */
.mz-pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mz-pkg-card {
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 108, 168, 0.08);
  display: flex;
  flex-direction: column;
}
.mz-pkg-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.mz-pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-pkg-card__code {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--mz-yellow);
  color: var(--mz-ink);
  font-family: var(--mz-font);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--mz-radius-pill);
}
.mz-pkg-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mz-pkg-card__meta {
  font-size: 0.8rem;
  color: var(--mz-teal);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.mz-pkg-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.mz-pkg-card__body > p {
  font-size: 0.92rem;
  color: var(--mz-muted);
  flex: 1;
}
.mz-pkg-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--mz-line);
}
.mz-pkg-card__price {
  font-family: var(--mz-font);
  font-weight: 700;
  color: var(--mz-sky);
}

/* ——— Steps ——— */
.mz-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: none;
}
.mz-steps__item {
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--mz-line);
}
.mz-steps__n {
  display: inline-block;
  font-family: var(--mz-font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mz-yellow);
  background: var(--mz-ink);
  width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.mz-steps__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.mz-steps__item p {
  font-size: 0.92rem;
  color: var(--mz-muted);
}

/* ——— Why ——— */
.mz-why {
  display: grid;
  gap: 2rem;
}
.mz-why__list {
  display: grid;
  gap: 1rem;
}
.mz-why__item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--mz-radius);
  padding: 1.25rem 1.35rem;
}
.mz-why__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--mz-yellow);
}
.mz-why__item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

/* ——— Journal ——— */
.mz-journal-grid,
.mz-article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mz-journal-card,
.mz-article-card {
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 108, 168, 0.06);
}
.mz-journal-card a {
  display: block;
  padding-bottom: 1.25rem;
}
.mz-journal-card__media,
.mz-article-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.mz-journal-card__media img,
.mz-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.mz-journal-card:hover img,
.mz-article-card:hover img {
  transform: scale(1.04);
}
.mz-journal-card__meta,
.mz-article-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mz-teal);
  letter-spacing: 0.04em;
  padding: 1rem 1.2rem 0.35rem;
}
.mz-journal-card h3,
.mz-article-card h2 {
  font-size: 1.1rem;
  padding: 0 1.2rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.mz-journal-card p,
.mz-article-card p {
  font-size: 0.9rem;
  color: var(--mz-muted);
  padding: 0 1.2rem;
}
.mz-article-card {
  padding-bottom: 1.35rem;
}
.mz-article-card .mz-text-link {
  margin: 0.85rem 1.2rem 0;
}

/* ——— Voices ——— */
.mz-voices {
  display: grid;
  gap: 1rem;
}
.mz-voice {
  background: var(--mz-sky-soft);
  border-radius: var(--mz-radius);
  padding: 1.5rem 1.35rem;
  margin: 0;
  border-top: 3px solid var(--mz-yellow);
}
.mz-voice p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mz-voice footer {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.85rem;
}
.mz-voice cite {
  font-style: normal;
  font-weight: 700;
  color: var(--mz-sky);
}
.mz-voice span {
  color: var(--mz-muted);
}

/* ——— FAQ ——— */
.mz-faq {
  display: grid;
  gap: 2rem;
}
.mz-faq__item {
  border-bottom: 1px solid var(--mz-line);
}
.mz-faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  color: var(--mz-ink);
  cursor: pointer;
}
.mz-faq__btn span:last-child {
  font-family: var(--mz-font);
  font-size: 1.25rem;
  color: var(--mz-sky);
  flex-shrink: 0;
}
.mz-faq__panel {
  padding: 0 0 1.15rem;
}
.mz-faq__panel p {
  color: var(--mz-muted);
  font-size: 0.92rem;
}
.mz-faq__item.is-open .mz-faq__btn span:last-child {
  transform: rotate(45deg);
}

/* ——— Banner CTA ——— */
.mz-banner-cta {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
  color: #fff;
}
.mz-banner-cta--compact {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.mz-banner-cta__media {
  position: absolute;
  inset: 0;
}
.mz-banner-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-banner-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 124, 123, 0.88) 0%, rgba(27, 108, 168, 0.82) 100%);
}
.mz-banner-cta__content {
  position: relative;
  z-index: 1;
}
.mz-banner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ——— Page hero ——— */
.mz-page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.mz-page-hero__media {
  position: absolute;
  inset: 0;
}
.mz-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 50, 74, 0.25) 0%, rgba(27, 108, 168, 0.78) 100%);
}
.mz-page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 2.5rem;
}
.mz-page-hero__title {
  font-family: var(--mz-font);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0.35rem 0 0.5rem;
}
.mz-page-hero__lead {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
}
.mz-page-hero--plain {
  background: linear-gradient(160deg, var(--mz-sky-soft) 0%, var(--mz-mist) 100%);
  color: var(--mz-ink);
  min-height: auto;
  padding: 3rem 0 1rem;
  align-items: stretch;
}
.mz-page-hero--plain .mz-title {
  margin-top: 0.25rem;
}
.mz-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mz-crumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}
.mz-crumb a:hover {
  color: #fff;
}
.mz-crumb--dark {
  color: var(--mz-muted);
}
.mz-crumb--dark a:hover {
  color: var(--mz-sky);
}

/* ——— About ——— */
.mz-about-intro {
  display: grid;
  gap: 1.5rem;
}
.mz-about-intro p + p {
  margin-top: 0.85rem;
}
.mz-about-intro p {
  color: var(--mz-muted);
}

.mz-values {
  display: grid;
  gap: 1rem;
}
.mz-values__item {
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  padding: 1.35rem;
  border-left: 4px solid var(--mz-yellow);
  box-shadow: 0 4px 16px rgba(27, 108, 168, 0.06);
}
.mz-values__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--mz-sky);
}
.mz-values__item p {
  font-size: 0.92rem;
  color: var(--mz-muted);
}

.mz-places {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mz-place {
  display: grid;
  gap: 1.25rem;
}
.mz-place__media {
  position: relative;
  border-radius: var(--mz-radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.mz-place__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-place__en {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--mz-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mz-sky);
  padding: 0.3rem 0.65rem;
  border-radius: var(--mz-radius-pill);
}
.mz-place__copy h2 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.mz-place__season {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mz-teal);
  margin-bottom: 0.65rem;
}
.mz-place__copy > p {
  color: var(--mz-muted);
  margin-bottom: 1rem;
}

/* ——— Services list ——— */
.mz-svc-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mz-svc {
  display: grid;
  gap: 1.25rem;
  background: var(--mz-paper);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 108, 168, 0.08);
}
.mz-svc__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.mz-svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-svc__copy {
  padding: 0 1.35rem 1.5rem;
}
.mz-svc__code {
  font-family: var(--mz-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mz-teal);
  margin-bottom: 0.35rem;
}
.mz-svc__copy h2 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.mz-svc__price {
  font-family: var(--mz-font);
  font-weight: 700;
  color: var(--mz-sky);
  margin-bottom: 0.65rem;
}
.mz-svc__copy > p {
  color: var(--mz-muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}
.mz-svc__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.mz-svc__includes li {
  font-size: 0.78rem;
  background: var(--mz-sky-soft);
  color: var(--mz-sky);
  padding: 0.3rem 0.7rem;
  border-radius: var(--mz-radius-pill);
  font-weight: 500;
}

/* ——— Contact ——— */
.mz-contact {
  display: grid;
  gap: 2.5rem;
}
.mz-contact__addr {
  font-style: normal;
  color: var(--mz-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.mz-contact__addr a {
  color: var(--mz-sky);
  font-weight: 600;
}
.mz-contact__check ul {
  margin-top: 0.5rem;
}
.mz-contact__check li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--mz-muted);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.mz-contact__check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mz-yellow);
}

.mz-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mz-form__row {
  display: grid;
  gap: 1rem;
}
.mz-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--mz-ink);
}
.mz-field input,
.mz-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--mz-line);
  border-radius: 10px;
  background: var(--mz-paper);
  color: var(--mz-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mz-field input:focus,
.mz-field textarea:focus {
  outline: none;
  border-color: var(--mz-sky);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.15);
}
.mz-field.is-invalid input,
.mz-field.is-invalid textarea {
  border-color: #d64545;
}
.mz-form-err {
  background: #fde8e8;
  color: #a32020;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.mz-form-ok {
  background: var(--mz-sky-soft);
  border-radius: var(--mz-radius);
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--mz-yellow);
}
.mz-form-ok__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.35rem 0 0.5rem;
}

/* ——— Footer ——— */
.mz-footer {
  background: var(--mz-ink);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3rem;
}
.mz-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.mz-footer__name {
  font-family: var(--mz-font);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.mz-footer__jp {
  font-size: 0.85rem;
  color: var(--mz-yellow);
  margin: 0.2rem 0 0.65rem;
}
.mz-footer__tag {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.mz-footer__label {
  font-family: var(--mz-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mz-yellow);
  margin-bottom: 0.75rem;
}
.mz-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}
.mz-footer__nav a:hover {
  color: var(--mz-yellow);
}
.mz-footer__addr {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}
.mz-footer__addr a {
  color: #fff;
}
.mz-footer__addr a:hover {
  color: var(--mz-yellow);
}
.mz-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}
.mz-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ——— Reveal ——— */
.mz-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mz-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mz-reveal,
  .mz-hero__eyebrow,
  .mz-hero__brand,
  .mz-hero__title,
  .mz-hero__lede,
  .mz-hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ——— Breakpoints ——— */
@media (min-width: 640px) {
  .mz-dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mz-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mz-journal-grid,
  .mz-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mz-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .mz-voices {
    grid-template-columns: repeat(3, 1fr);
  }
  .mz-values {
    grid-template-columns: repeat(3, 1fr);
  }
  .mz-form__row {
    grid-template-columns: 1fr 1fr;
  }
  .mz-footer__grid {
    grid-template-columns: 1.4fr 1fr 1.3fr;
  }
}

@media (min-width: 900px) {
  .mz-nav {
    display: flex;
  }
  .mz-cta--nav {
    display: inline-flex;
  }
  .mz-menu-btn {
    display: none;
  }
  .mz-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .mz-hero {
    grid-template-columns: 1fr 1.05fr;
    min-height: min(88vh, 680px);
  }
  .mz-hero__right {
    min-height: 100%;
  }
  .mz-hero__right img {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }
  .mz-hero__wave {
    height: 64px;
  }
  .mz-hero__float {
    left: 1.5rem;
    bottom: 4rem;
  }

  .mz-faq {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
  .mz-why {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  .mz-about-intro {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
  .mz-place {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }
  .mz-place--flip .mz-place__media {
    order: 2;
  }
  .mz-svc {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }
  .mz-svc__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .mz-svc__copy {
    padding: 1.75rem 1.75rem 1.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mz-contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

@media (min-width: 1100px) {
  .mz-dest-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .mz-pkg-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Marquee + gradient + dest carousel —— */
.mz-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #E8F4FC, #FFF9E6, #E8F4FC);
  border-block: 1px solid var(--mz-line);
  padding: 0.8rem 0;
}
.mz-marquee__track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  animation: mz-marquee 34s linear infinite;
}
.mz-marquee__item {
  font-family: var(--mz-font);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mz-sky);
  white-space: nowrap;
}
.mz-marquee__item::after {
  content: "◆";
  margin-left: 2.4rem;
  color: var(--mz-yellow);
  font-size: 0.65rem;
}
@keyframes mz-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.mz-gradient-band {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  text-align: center;
  overflow: hidden;
  background: var(--mz-mist);
}
.mz-gradient-band__glow {
  position: absolute;
  inset: 5% 12%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(27, 108, 168, 0.28), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(245, 197, 24, 0.35), transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(14, 124, 123, 0.22), transparent 48%);
  filter: blur(10px);
  pointer-events: none;
}
.mz-gradient-band__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}
.mz-gradient-band .mz-title {
  margin-bottom: 0.75rem;
}
.mz-gradient-band .mz-title em {
  font-style: normal;
  color: var(--mz-sky);
  background: linear-gradient(90deg, var(--mz-sky), var(--mz-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mz-dest-carousel {
  margin-top: 0.5rem;
}
.mz-dest-carousel .swiper-slide {
  width: min(260px, 75vw);
}
.mz-dest-carousel__nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1.2rem;
}
.mz-dest-carousel__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: var(--mz-sky);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.mz-dest-carousel__btn:hover {
  background: var(--mz-yellow);
  color: var(--mz-ink);
}
@media (prefers-reduced-motion: reduce) {
  .mz-marquee__track { animation: none; }
}

/* —— Hero center + image carousel polish —— */
.mz-hero--centered .mz-hero__left {
  align-items: center;
  text-align: center;
}
.mz-hero--centered .mz-hero__lede {
  margin-inline: auto;
}
.mz-hero--centered .mz-hero__actions {
  justify-content: center;
}
.mz-hero__right {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.mz-hero-swiper,
.mz-hero-swiper .swiper-slide {
  height: 100%;
  min-height: inherit;
}
.mz-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.mz-hero-swiper__dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 1.25rem !important;
  transform: translateX(-50%);
  width: auto !important;
  z-index: 4;
}
.mz-hero-swiper__dots .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}
.mz-hero-swiper__dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--mz-yellow);
}
.mz-section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}
.mz-voice-swiper {
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.mz-voice-swiper .swiper-slide {
  width: min(340px, 85vw);
  height: auto;
}
.mz-voice--card {
  height: 100%;
  background: #fff;
  border-radius: var(--mz-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--mz-shadow);
  border: 1px solid var(--mz-line);
}
.mz-stars {
  color: var(--mz-yellow);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.mz-voice-swiper__nav {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1.25rem;
}
@media (min-width: 900px) {
  .mz-hero__right,
  .mz-hero-swiper .swiper-slide img {
    min-height: 100%;
  }
}

.mz-article-card__more {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--mz-muted);
  line-height: 1.7;
}
.mz-section__head {
  text-align: center;
}
.mz-section__head--row {
  text-align: left;
}
.mz-faq {
  text-align: center;
}
.mz-faq__list {
  text-align: left;
  margin-inline: auto;
  max-width: 40rem;
}
