:root {
  --ink: #062d3d;
  --ink-soft: #315462;
  --ocean-deep: #063f63;
  --ocean: #007e9c;
  --lagoon: #00aebb;
  --foam: #dffbff;
  --sky: #effbfc;
  --sand: #f5f0e6;
  --sun: #ffd27b;
  --coral: #f47d62;
  --ryukyu-indigo: #123f6d;
  --turmeric: #f3b934;
  --hibiscus: #e94f3d;
  --island-leaf: #14765f;
  --his-blue: #005bac;
  --his-blue-bright: #0078c9;
  --his-navy: #003465;
  --his-cyan: #00b7ce;
  --white: #fff;
  --line: rgba(6, 45, 61, 0.14);
  --shadow: 0 24px 70px rgba(6, 63, 99, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
main { overflow: hidden; overflow: clip; }
img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-break: strict; text-wrap: balance; }
p, dd { line-break: strict; overflow-wrap: break-word; text-wrap: pretty; word-break: auto-phrase; }

.heading-line { display: block; }
.hero-copy h1 .heading-line,
.final-content h2 .heading-line { white-space: nowrap; }
.keep-together { display: inline-block; white-space: nowrap; }
.meal-flags { white-space: nowrap; }

.shell { width: var(--shell); margin-inline: auto; }
.section-pad { position: relative; isolation: isolate; padding-block: clamp(84px, 7.4vw, 112px); }

.section-index {
  position: absolute;
  z-index: 0;
  top: clamp(48px, 7vw, 96px);
  right: max(24px, calc((100vw - 1320px) / 2));
  color: rgba(0, 126, 156, 0.065);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(7rem, 15vw, 13rem);
  font-weight: 200;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.journey .section-index { color: rgba(255, 255, 255, 0.045); }
.campaign .section-index { color: rgba(189, 74, 50, 0.06); }
.gifts .section-index { color: rgba(189, 74, 50, 0.055); }

.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: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ocean-deep);
  border-radius: 99px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light { color: rgba(255, 255, 255, 0.82); }
.eyebrow.warm { color: #bd4a32; }

em {
  color: var(--ocean);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-style: italic;
  font-weight: 500;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease);
}

.button span, .button svg { position: relative; z-index: 1; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; transition: transform 0.38s var(--ease); }
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 32px rgba(6, 45, 61, 0.2); }
.button:hover::before, .button:focus-visible::before { transform: translateX(0); }
.button:hover svg, .button:focus-visible svg { transform: translate(3px, -3px); }
.button-sun { color: var(--ink); background: var(--sun); }
.button-sun:hover, .button-sun:focus-visible { color: var(--ocean-deep); }
.button-primary { color: var(--white); background: var(--ocean-deep); }
.button-primary:hover, .button-primary:focus-visible { color: var(--ocean-deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transition: gap 0.3s var(--ease), opacity 0.3s ease;
}

.text-link:hover { gap: 16px; opacity: 0.82; }
.text-link.light { color: var(--white); }

.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--ocean-deep);
  box-shadow: 0 24px 64px rgba(6, 63, 99, 0.14);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  transition: transform 1.1s var(--ease);
}

.photo-frame:hover img { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.11); }
.photo-frame figcaption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  color: var(--white);
  background: var(--ocean-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
.photo-frame figcaption span { color: var(--sun); font-size: 0.72rem; letter-spacing: 0.14em; }
.photo-frame figcaption::after { width: 26px; height: 1px; content: ""; background: var(--sun); transform-origin: left; transition: transform 0.55s var(--ease); }
.photo-frame:hover figcaption::after { transform: scaleX(1.65); }

.intro-title h2::after,
.section-heading h2::after,
.campaign-copy h2::after,
.stay-heading h2::after,
.gifts-heading h2::after,
.facts-heading h2::after {
  display: block;
  width: clamp(74px, 8vw, 118px);
  height: 3px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, var(--lagoon), var(--sun));
  transform-origin: left;
}

.campaign-copy h2::after, .gifts-heading h2::after { background: linear-gradient(90deg, var(--coral), var(--sun)); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-h);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding-inline: clamp(18px, 3.5vw, 54px);
  color: var(--white);
  background: #032c3b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: height 0.35s var(--ease), color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--lagoon), var(--sun), var(--coral));
  box-shadow: 0 0 16px rgba(0, 174, 187, 0.45);
  transition: width 0.12s linear;
}

.site-header.scrolled, .site-header.menu-active {
  height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(6, 45, 61, 0.09);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; color: var(--sun); }
.brand-mark svg { width: 38px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2.4; }
.site-header.scrolled .brand-mark, .site-header.menu-active .brand-mark { color: var(--ocean); }
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong { font-size: 0.82rem; letter-spacing: 0.15em; }
.brand-copy small { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.23em; opacity: 0.7; }

.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 42px); }
.desktop-nav a { position: relative; padding-block: 8px; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.055em; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a.is-active { color: var(--sun); }
.site-header.scrolled .desktop-nav a.is-active { color: var(--ocean); }

.header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 10px 0 8px; border-bottom: 1px solid currentColor; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; }
.header-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform 0.3s var(--ease); }
.header-cta:hover svg { transform: translate(3px, -3px); }
.menu-button, .mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ocean-deep);
}

.hero-media, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { overflow: hidden; }
.hero-slide {
  object-fit: cover;
  object-position: 56% 50%;
  opacity: 0;
  transform: scale(1.035);
  animation: hero-gallery 24s infinite;
  will-change: opacity, transform;
}
.hero-slide-a { animation-delay: 0s; }
.hero-slide-b { animation-delay: 8s; }
.hero-slide-c { animation-delay: 16s; object-position: 62% 50%; }
@keyframes hero-gallery {
  0%, 29% { opacity: 1; transform: scale(1.035); }
  34%, 100% { opacity: 0; transform: scale(1.12); }
}
.hero-orbit { position: absolute; pointer-events: none; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 50%; }
.orbit-one { top: 12%; right: 11%; width: 270px; height: 270px; animation: drift 12s ease-in-out infinite; }
.orbit-one::before { position: absolute; top: 18px; right: 54px; width: 8px; height: 8px; content: ""; background: var(--sun); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255, 210, 123, 0.16); }
.orbit-two { right: -130px; bottom: -170px; width: 560px; height: 560px; border-color: rgba(255, 255, 255, 0.14); animation: drift 18s ease-in-out infinite reverse; }
@keyframes drift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -12px, 0); } }

.hero-gallery-status {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-h) + 30px);
  right: clamp(18px, 3.5vw, 54px);
  display: grid;
  width: 146px;
  gap: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ocean-deep);
  border-top: 2px solid var(--sun);
  box-shadow: 0 18px 42px rgba(3, 36, 56, 0.2);
}

.hero-gallery-status span { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; opacity: 0.38; animation: gallery-label 24s infinite; }
.hero-gallery-status span i { position: relative; height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.3); }
.hero-gallery-status span i::after { position: absolute; inset: 0; content: ""; background: var(--sun); transform: scaleX(0); transform-origin: left; animation: gallery-bar 24s infinite; }
.hero-gallery-status span b { font-size: 0.55rem; letter-spacing: 0.13em; white-space: nowrap; }
.hero-gallery-status .status-b, .hero-gallery-status .status-b i::after { animation-delay: 8s; }
.hero-gallery-status .status-c, .hero-gallery-status .status-c i::after { animation-delay: 16s; }
@keyframes gallery-label { 0%, 29% { opacity: 1; } 34%, 100% { opacity: 0.38; } }
@keyframes gallery-bar { 0% { transform: scaleX(0); } 29% { transform: scaleX(1); } 34%, 100% { transform: scaleX(0); } }

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 720px) minmax(340px, 1fr); align-items: end; justify-content: space-between; gap: clamp(28px, 4vw, 52px); padding-top: 144px; padding-bottom: clamp(72px, 8vw, 108px); }
.hero-copy { max-width: 720px; padding: clamp(32px, 3.2vw, 46px); background: var(--ocean-deep); border-left: 4px solid var(--sun); box-shadow: 0 30px 70px rgba(3, 36, 56, 0.24); }
.hero-copy h1 { margin-bottom: 22px; font-size: clamp(3rem, 4.45vw, 4.25rem); font-weight: 500; letter-spacing: -0.055em; line-height: 1.09; }
.hero-copy h1 em { color: var(--sun); }
.hero-lead { max-width: 34em; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); font-size: clamp(1rem, 1.2vw, 1.14rem); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.hero-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; color: var(--ink); background: var(--white); border: 1px solid rgba(6, 45, 61, 0.12); box-shadow: 0 24px 60px rgba(3, 36, 56, 0.22); }
.hero-meta div { min-width: 0; padding: 20px 18px; }
.hero-meta div:nth-child(odd) { border-right: 1px solid var(--line); }
.hero-meta div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.hero-meta div > span { display: block; margin-bottom: 6px; color: var(--ocean); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; }
.hero-meta strong { display: block; overflow-wrap: normal; font-size: 0.96rem; letter-spacing: 0.035em; line-height: 1.55; }
.hero-meta .date-range { display: grid; grid-template-columns: max-content 12px; align-items: center; gap: 1px 4px; font-variant-numeric: tabular-nums; }
.hero-meta .date-range time:last-child { grid-column: 1; }
.hero-meta .date-range span { grid-column: 2; grid-row: 1; margin: 0; color: var(--ink-soft); font-size: 0.78em; text-align: center; }
.visual-note { position: absolute; z-index: 2; right: 26px; bottom: 20px; margin: 0; padding: 6px 10px; color: var(--white); background: var(--ocean-deep); font-size: 0.72rem; letter-spacing: 0.045em; }
.scroll-cue { position: absolute; z-index: 2; bottom: 0; left: 34px; display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.7); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em; transform: rotate(-90deg); transform-origin: left bottom; }
.scroll-cue span { width: 42px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.35); }
.scroll-cue span::after { display: block; width: 100%; height: 100%; content: ""; background: var(--sun); animation: scroll-cue 2.2s ease-in-out infinite; transform-origin: left; }
@keyframes scroll-cue { 0% { transform: scaleX(0); transform-origin: left; } 45% { transform: scaleX(1); transform-origin: left; } 55% { transform: scaleX(1); transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }

/* Campaign ribbon */
.campaign-ribbon {
  position: relative;
  z-index: 3;
  padding-block: 24px;
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(6, 45, 61, 0.13);
}

.ribbon-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3.2vw, 48px);
}

.ribbon-label { margin: 0; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; }
.ribbon-inner h2 { margin: 0; font-size: 1.1rem; letter-spacing: 0.03em; line-height: 1.4; }
.ribbon-inner p { margin: 0; font-size: 0.92rem; line-height: 1.5; }
.ribbon-inner > p:not(.ribbon-label) span { margin-inline: 6px; color: #a83625; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; vertical-align: -0.08em; }
.ribbon-inner a { padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: 0.84rem; font-weight: 700; white-space: nowrap; }

.blue-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background: var(--ocean);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.blue-marquee-track { display: flex; width: max-content; animation: marquee-flow 30s linear infinite; }
.blue-marquee:hover .blue-marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; min-width: max-content; align-items: center; gap: 24px; padding: 13px 12px; }
.marquee-set span { font-size: 0.63rem; font-weight: 800; letter-spacing: 0.22em; white-space: nowrap; }
.marquee-set i { width: 5px; height: 5px; background: var(--sun); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 210, 123, 0.14); }
@keyframes marquee-flow { to { transform: translateX(-50%); } }

/* Introduction */
.intro { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--sky) 100%); }
.intro.section-pad { padding-bottom: clamp(52px, 5vw, 76px); }
.intro::before { position: absolute; top: 13%; right: -7%; width: clamp(240px, 30vw, 470px); aspect-ratio: 1; content: ""; border: 1px solid rgba(0, 126, 156, 0.13); border-radius: 50%; }
.intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(48px, 5vw, 72px); align-items: start; }
.intro-title h2, .section-heading h2, .campaign-copy h2, .stay-heading h2, .gifts-heading h2, .facts-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.35vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.13;
}
.intro-body { max-width: 38em; padding-top: 34px; color: var(--ink-soft); }
.intro-title h2 .heading-line,
.section-heading h2 .heading-line,
.campaign-copy h2 .heading-line,
.stay-heading h2 .heading-line,
.gifts-heading h2 .heading-line,
.facts-heading h2 .heading-line { white-space: nowrap; }
.intro-body p { max-width: 38em; margin-bottom: 18px; line-height: 1.82; }
.intro-body p:last-child { margin-bottom: 0; }
.intro-body .lead-copy { max-width: 30em; color: var(--ink); font-size: clamp(1.15rem, 1.5vw, 1.42rem); line-height: 1.8; }
.editorial-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(205px, 23vw, 300px));
  gap: 18px;
  margin-top: clamp(48px, 5vw, 72px);
}
.collage-main { grid-area: 1 / 1 / 3 / 8; }
.collage-breakfast { grid-area: 1 / 8 / 2 / 13; }
.collage-deck { grid-area: 2 / 8 / 3 / 13; }
.collage-main figcaption { padding: 10px 14px; font-size: 0.88rem; }
.tide-line { position: relative; height: clamp(52px, 6vw, 76px); margin-top: clamp(36px, 4vw, 56px); }
.tide-line svg { width: 100%; height: 100%; fill: none; stroke: rgba(0, 126, 156, 0.26); stroke-width: 1.4; }
.tide-line path:last-child { stroke: rgba(244, 125, 98, 0.28); }

/* Journey */
.journey { color: var(--white); background: var(--ocean-deep); }
.journey > .shell { position: relative; z-index: 1; }
.section-heading { display: grid; max-width: 810px; margin-bottom: clamp(44px, 5vw, 64px); }
.section-heading .eyebrow { color: #79e7e4; }
.section-heading h2 { color: var(--white); }
.section-heading h2 em { color: var(--sun); }
.section-heading > p:last-child { max-width: 34em; margin: 22px 0 0 auto; color: rgba(255, 255, 255, 0.76); line-height: 1.8; }
.journey-list { margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); list-style: none; }
.journey-row { position: relative; isolation: isolate; display: grid; grid-template-columns: 74px 38px minmax(250px, 1fr) minmax(180px, 0.6fr) minmax(190px, 0.58fr); gap: clamp(16px, 2.2vw, 30px); align-items: center; min-height: 244px; padding-block: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.journey-row::before { position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; content: ""; background: rgba(0, 174, 187, 0); transition: background 0.5s ease; }
.journey-row:hover::before, .journey-row.featured::before { background: rgba(0, 174, 187, 0.08); }
.day-index { display: grid; justify-items: start; line-height: 1; }
.day-index span { margin-bottom: 10px; color: rgba(255, 255, 255, 0.58); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; }
.day-index strong { color: var(--sun); font-size: 3rem; font-weight: 300; letter-spacing: -0.08em; }
.day-line { position: relative; height: 100%; min-height: 150px; }
.day-line::before { position: absolute; top: 50%; left: 50%; width: 1px; height: calc(100% + 77px); content: ""; background: rgba(255, 255, 255, 0.16); transform: translate(-50%, -50%); }
.day-line::after { position: absolute; top: 50%; left: 50%; width: 2px; height: calc(100% + 77px); content: ""; background: linear-gradient(180deg, #76e9e5, var(--sun), #76e9e5); background-size: 100% 200%; transform: translate(-50%, -50%) scaleY(1); transform-origin: top; animation: day-current 4.8s ease-in-out infinite alternate; }
.day-line span { position: absolute; z-index: 2; top: 50%; left: 50%; width: 13px; height: 13px; background: var(--ocean-deep); border: 3px solid #76e9e5; border-radius: 50%; box-shadow: 0 0 0 9px rgba(118, 233, 229, 0.08); transform: translate(-50%, -50%); }
.day-line span::after { position: absolute; inset: -12px; content: ""; border: 1px solid currentColor; border-radius: 50%; opacity: 0; animation: waypoint 2.8s ease-out infinite; }
.journey-row.featured .day-line span { border-color: var(--sun); box-shadow: 0 0 0 9px rgba(255, 210, 123, 0.1); }
@keyframes waypoint { 0% { opacity: 0.45; transform: scale(0.55); } 70%, 100% { opacity: 0; transform: scale(1.35); } }
@keyframes day-current { to { background-position: 0 100%; } }
.day-kicker { margin-bottom: 10px; color: #78e7e3; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; }
.day-copy h3 { margin-bottom: 15px; font-size: clamp(1.6rem, 2.35vw, 2.4rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.4; }
.day-copy > p:last-child { max-width: 34em; margin-bottom: 0; color: rgba(255, 255, 255, 0.74); font-size: 1rem; line-height: 1.78; }
.day-photo { height: 168px; border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22); }
.day-photo figcaption { padding: 7px 10px; font-size: 0.75rem; letter-spacing: 0.1em; }
.day-status { position: relative; display: grid; gap: 4px; overflow: hidden; padding: 24px; background: rgba(255, 255, 255, 0.06); border-left: 2px solid rgba(118, 233, 229, 0.7); }
.day-status::after { position: absolute; top: 0; right: 0; width: 34px; height: 34px; content: ""; border-top: 1px solid rgba(118, 233, 229, 0.35); border-right: 1px solid rgba(118, 233, 229, 0.35); transition: width 0.5s var(--ease), height 0.5s var(--ease); }
.journey-row:hover .day-status::after { width: 52px; height: 52px; }
.day-status > span { color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }
.day-status strong { font-size: 0.92rem; letter-spacing: 0.035em; }
.day-status small { color: rgba(255, 255, 255, 0.68); font-size: 0.78rem; line-height: 1.6; }

/* Limited campaign */
.campaign { position: relative; overflow: hidden; background: #fff8ee; }
.campaign::after { position: absolute; top: 0; right: 8%; width: 1px; height: 100%; content: ""; background: rgba(189, 74, 50, 0.12); }
.sun-disc { position: absolute; top: -13vw; right: -8vw; width: clamp(320px, 44vw, 720px); aspect-ratio: 1; background: linear-gradient(135deg, rgba(255, 210, 123, 0.75), rgba(244, 125, 98, 0.18)); border-radius: 50%; animation: sun-breathe 10s ease-in-out infinite; }
.sun-disc::before, .sun-disc::after { position: absolute; content: ""; border-radius: 50%; }
.sun-disc::before { inset: 9%; border: 1px solid rgba(189, 74, 50, 0.16); }
.sun-disc::after { top: 13%; left: 13%; width: 12px; height: 12px; background: var(--coral); box-shadow: 0 0 0 12px rgba(244, 125, 98, 0.1); animation: sun-orbit 18s linear infinite; transform-origin: 260% 260%; }
@keyframes sun-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes sun-orbit { to { transform: rotate(360deg); } }
.campaign-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); gap: clamp(52px, 7vw, 104px); align-items: end; }
.campaign-copy { max-width: 490px; }
.campaign-number { margin-bottom: 14px; color: #bd4a32; font-size: clamp(5rem, 9vw, 8.4rem); font-weight: 300; letter-spacing: -0.09em; line-height: 0.9; }
.campaign-number span { margin-right: 7px; font-size: 0.3em; vertical-align: 1.25em; }
.campaign-copy h2 { margin-bottom: 28px; }
.campaign-copy h2 em { color: #bd4a32; }
.campaign-copy > p:not(.campaign-number):not(.eyebrow) { max-width: 34em; color: #654b45; line-height: 1.82; }
.campaign-dates { margin: 30px 0 0; padding-top: 20px; border-top: 1px solid rgba(189, 74, 50, 0.22); }
.campaign-dates div { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 16px; padding-block: 9px; }
.campaign-dates dt { color: #8b5e52; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; }
.campaign-dates dd { margin: 0; font-size: 0.92rem; font-weight: 700; }
.campaign-range { display: grid; grid-template-columns: max-content 14px max-content; align-items: center; gap: 4px; font-variant-numeric: tabular-nums; }
.campaign-range span { color: rgba(101, 75, 69, 0.7); text-align: center; }
.campaign-poster { margin-top: 32px; aspect-ratio: 1.42; background: #0054ba; box-shadow: 0 24px 60px rgba(137, 62, 43, 0.18); }
.campaign-poster img { object-position: center; }
.route-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.route-card { position: relative; display: flex; min-height: 480px; flex-direction: column; overflow: hidden; padding: clamp(30px, 3.7vw, 46px); color: var(--white); background: var(--ocean-deep); box-shadow: var(--shadow); transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.route-card.coral { color: var(--ink); background: var(--sun); transform: translateY(24px); }
.route-card::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; content: ""; background: linear-gradient(90deg, #76e9e5, var(--sun)); transform: scaleX(0.18); transform-origin: left; transition: transform 0.8s var(--ease); }
.route-card.coral::before { background: linear-gradient(90deg, var(--coral), var(--white)); }
.route-card:hover { box-shadow: 0 34px 82px rgba(6, 63, 99, 0.22); transform: translateY(-8px); }
.route-card.coral:hover { transform: translateY(16px); }
.route-card:hover::before { transform: scaleX(1); }
.route-topline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 18px; color: rgba(255, 255, 255, 0.72); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }
.route-card.coral .route-topline { color: rgba(6, 45, 61, 0.64); }
.route-icon { display: grid; width: 82px; height: 82px; margin-block: 46px 32px; place-items: center; color: #78e7e3; border: 1px solid currentColor; border-radius: 50%; transition: transform 0.65s var(--ease), background 0.65s ease; }
.route-card.coral .route-icon { color: #bd4a32; }
.route-icon svg { width: 54px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.route-card:hover .route-icon { background: rgba(255, 255, 255, 0.08); transform: rotate(-7deg) scale(1.06); }
.route-card.coral:hover .route-icon { background: rgba(255, 255, 255, 0.25); }
.route-card h3 { margin-bottom: 16px; font-size: clamp(1.5rem, 2.1vw, 2.12rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.4; }
.route-card > p:not(.route-price) { color: rgba(255, 255, 255, 0.74); font-size: 1rem; line-height: 1.78; }
.route-card.coral > p:not(.route-price) { color: rgba(6, 45, 61, 0.72); }
.route-price { display: grid; gap: 4px; margin: auto 0 0; padding-top: 26px; }
.route-price s { color: rgba(255, 255, 255, 0.62); font-size: 0.76rem; }
.route-card.coral .route-price s { color: rgba(6, 45, 61, 0.54); }
.route-price strong { font-size: 1.08rem; }
.campaign-note { position: relative; z-index: 1; display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; gap: 22px; align-items: start; margin-top: 58px; padding: 26px 28px; background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(189, 74, 50, 0.15); }
.campaign-note strong { font-size: 0.84rem; letter-spacing: 0.06em; }
.campaign-note-copy { display: grid; max-width: 48em; gap: 8px; }
.campaign-note p { margin: 0; color: #6c5750; font-size: 0.92rem; line-height: 1.75; }
.campaign-note a { padding-bottom: 3px; color: #a63d2b; border-bottom: 1px solid currentColor; font-size: 0.82rem; font-weight: 700; white-space: nowrap; }

/* Stay */
.stay { position: relative; overflow: hidden; background: var(--white); }
.stay::before { position: absolute; inset: auto -20% -36% 40%; height: 70%; content: ""; background: radial-gradient(ellipse at center, rgba(0, 174, 187, 0.15), transparent 66%); pointer-events: none; }
.stay-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr); column-gap: clamp(48px, 7vw, 92px); row-gap: clamp(40px, 4vw, 56px); align-items: center; }
.stay-heading { padding-top: 0; }
.stay-heading h2 { margin-bottom: 24px; }
.stay-heading > p:last-child { max-width: 34em; margin-bottom: 0; color: var(--ink-soft); line-height: 1.8; }
.stay-award { position: relative; display: grid; min-height: 330px; place-content: center; padding: 44px; color: var(--white); text-align: center; background: var(--ocean); border-radius: 50% 50% 47% 53% / 45% 52% 48% 55%; box-shadow: 0 35px 70px rgba(0, 126, 156, 0.24); animation: soft-shape 9s ease-in-out infinite; }
.stay-award::before { position: absolute; inset: 18px; content: ""; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: inherit; }
.stay-award::after { position: absolute; inset: -16px; content: ""; border: 1px dashed rgba(0, 126, 156, 0.3); border-radius: 50%; animation: orbit-ring 28s linear infinite; }
.stay-award span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; }
.stay-award strong { margin-block: 14px 6px; color: var(--sun); font-size: clamp(2.8rem, 4vw, 4.3rem); font-weight: 300; letter-spacing: -0.06em; line-height: 1; }
.stay-award i { font-size: 0.46em; font-weight: 400; }
.stay-award p { margin: 0; font-family: "Hiragino Mincho ProN", "Yu Mincho", serif; font-size: 1.1rem; }
@keyframes soft-shape { 0%, 100% { border-radius: 50% 50% 47% 53% / 45% 52% 48% 55%; } 50% { border-radius: 47% 53% 54% 46% / 52% 45% 55% 48%; } }
@keyframes orbit-ring { to { transform: rotate(360deg); } }
.stay-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(190px, 22vw, 286px));
  gap: 16px;
  margin-top: 0;
}
.stay-gallery > :nth-child(1) { grid-area: 1 / 1 / 3 / 8; }
.stay-gallery > :nth-child(2) { grid-area: 1 / 8 / 2 / 13; }
.stay-gallery > :nth-child(3) { grid-area: 2 / 8 / 3 / 13; }
.stay-gallery > :nth-child(4) { grid-area: 3 / 1 / 4 / 7; }
.stay-gallery > :nth-child(5) { grid-area: 3 / 7 / 4 / 13; }
.stay-photo-main figcaption { padding: 10px 14px; font-size: 0.9rem; }
.stay-features { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stay-feature { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: clamp(34px, 3.7vw, 50px) clamp(20px, 2.7vw, 38px); transition: background 0.45s ease, transform 0.45s var(--ease); }
.stay-feature + .stay-feature { border-left: 1px solid var(--line); }
.stay-feature:hover { background: var(--sky); transform: translateY(-4px); }
.feature-no { position: relative; color: var(--lagoon); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.feature-no::after { position: absolute; top: 28px; left: 0; width: 24px; height: 1px; content: ""; background: currentColor; transition: width 0.45s var(--ease); }
.stay-feature:hover .feature-no::after { width: 42px; }
.stay-feature h3 { margin-bottom: 13px; font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 600; letter-spacing: -0.02em; }
.stay-feature p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.78; }

/* Included gifts */
.gifts { position: relative; overflow: hidden; background: var(--sand); }
.gifts::before, .gifts::after { position: absolute; content: ""; border-radius: 50%; pointer-events: none; }
.gifts::before { top: -180px; left: -140px; width: 420px; height: 420px; border: 1px solid rgba(244, 125, 98, 0.2); }
.gifts::after { right: 8%; bottom: 8%; width: 130px; height: 130px; background: rgba(255, 210, 123, 0.48); }
.gifts > .shell { position: relative; z-index: 1; }
.gifts-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.5fr); gap: 18px 48px; align-items: end; margin-bottom: clamp(44px, 5vw, 64px); }
.gifts-heading .eyebrow { grid-column: 1 / -1; }
.gifts-heading h2 em { color: #bd4a32; }
.gifts-heading > p:last-child { max-width: 32em; margin: 0; color: #6a5a52; line-height: 1.8; }
.gift-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gift-card { position: relative; min-height: 360px; overflow: hidden; padding: clamp(30px, 3.4vw, 44px); background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(6, 45, 61, 0.08); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s ease; }
.gift-card::before { position: absolute; top: 0; left: 0; width: 100%; height: 3px; content: ""; background: linear-gradient(90deg, var(--coral), var(--sun), var(--lagoon)); transform: scaleX(0); transform-origin: left; transition: transform 0.75s var(--ease); }
.gift-card:hover { z-index: 2; background: var(--white); box-shadow: var(--shadow); transform: translateY(-12px); }
.gift-card:hover::before { transform: scaleX(1); }
.gift-card > span { color: #bd4a32; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; }
.gift-card svg { width: 70px; margin-block: 42px 30px; fill: none; stroke: var(--ocean); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.gift-card:hover svg { transform: rotate(-5deg) scale(1.06); }
.gift-card h3 { margin-bottom: 14px; font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.45; }
.gift-card p { max-width: 28em; margin: 0; color: #6a5a52; font-size: 1rem; line-height: 1.78; }

/* Essential facts */
.facts { position: relative; overflow: hidden; background: var(--white); }
.facts-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.15fr); gap: clamp(44px, 6vw, 84px); align-items: start; }
.facts-heading h2 { font-size: clamp(2.4rem, 3.8vw, 4.2rem); }
.facts-list { margin: 0; border-top: 1px solid var(--ink); }
.facts-list div { position: relative; display: grid; grid-template-columns: 138px 1fr; gap: 24px; padding-block: 18px; border-bottom: 1px solid var(--line); transition: padding-inline 0.4s var(--ease), background 0.4s ease; }
.facts-list div:hover { padding-inline: 16px; background: var(--sky); }
.facts-list dt { display: flex; align-items: baseline; gap: 9px; color: var(--ocean); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; }
.facts-list dt::before { width: 5px; height: 5px; flex: 0 0 auto; content: ""; background: var(--sun); border: 1px solid var(--ocean); border-radius: 50%; }
.facts-list dd { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.78; overflow-wrap: break-word; transition: transform 0.4s var(--ease); }
.facts-list div:hover dd { transform: translateX(5px); }

/* Final CTA */
.final-cta { position: relative; display: grid; min-height: min(780px, 88svh); align-items: end; overflow: hidden; color: var(--white); background: var(--ocean-deep); }
.final-picture, .final-picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-picture img { object-fit: cover; object-position: 50% 74%; transform: scale(1.03); animation: final-breathe 18s ease-in-out infinite alternate; }
@keyframes final-breathe { to { transform: scale(1.085); } }
.final-ripples { position: absolute; z-index: 1; right: clamp(-100px, 1vw, 20px); bottom: -90px; width: clamp(280px, 34vw, 540px); aspect-ratio: 1; pointer-events: none; }
.final-ripples i { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 50%; animation: ripple 7s ease-out infinite; }
.final-ripples i:nth-child(2) { animation-delay: -2.3s; }
.final-ripples i:nth-child(3) { animation-delay: -4.6s; }
@keyframes ripple { 0% { opacity: 0; transform: scale(0.28); } 18% { opacity: 0.8; } 100% { opacity: 0; transform: scale(1); } }
.final-content { position: relative; z-index: 2; padding-block: 72px; }
.final-panel { position: relative; width: min(660px, 100%); overflow: hidden; padding: clamp(34px, 4.5vw, 56px); background: var(--ocean-deep); border-top: 4px solid var(--sun); box-shadow: 0 30px 80px rgba(3, 36, 56, 0.28); }
.final-panel::after { position: absolute; top: 0; left: 0; width: 45%; height: 4px; content: ""; background: var(--coral); animation: panel-line 5s ease-in-out infinite alternate; transform: translateX(-100%); }
@keyframes panel-line { to { transform: translateX(320%); } }
.final-content h2 { max-width: 780px; margin-bottom: 24px; color: var(--white); font-size: clamp(3rem, 5vw, 5.2rem); font-weight: 500; letter-spacing: -0.06em; line-height: 1.08; }
.final-content h2 em { color: var(--sun); }
.final-panel > p { max-width: 34em; margin-bottom: 26px; color: rgba(255, 255, 255, 0.84); line-height: 1.8; }
.final-panel > small { display: block; max-width: 44em; margin-top: 20px; color: rgba(255, 255, 255, 0.7); font-size: 0.78rem; line-height: 1.75; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding-block: 52px 30px; color: var(--white); background: #032c3b; }
.site-footer::before { position: absolute; top: -210px; right: -140px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(255, 210, 123, 0.12); border-radius: 50%; pointer-events: none; }
.site-footer > .shell { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.footer-brand .brand-mark { color: var(--sun); }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 28px; }
.footer-top nav a { padding-bottom: 3px; border-bottom: 1px solid rgba(255, 255, 255, 0.35); font-size: 0.82rem; font-weight: 700; }
.footer-note { padding-block: 24px 0; color: rgba(255, 255, 255, 0.62); }
.footer-note p { max-width: 58em; margin: 0; font-size: 0.78rem; line-height: 1.85; }
.footer-note p + p { margin-top: 8px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; padding-top: 26px; color: rgba(255, 255, 255, 0.62); font-size: 0.75rem; line-height: 1.6; }
.footer-bottom a { color: rgba(255, 255, 255, 0.78); border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.footer-brand:hover .brand-mark { animation: footer-wave 0.75s var(--ease); }
@keyframes footer-wave { 50% { transform: translateY(-5px) rotate(-4deg); } }
.mobile-sticky { display: none; }
.gift-card svg { transition: transform 0.55s var(--ease); }

/* Important content is visible immediately; motion is decorative only. */
.reveal { opacity: 1; clip-path: none; }

@media (max-width: 1080px) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr); gap: 36px; }
  .hero-copy h1 { font-size: clamp(2.55rem, 4.3vw, 3rem); }
  .ribbon-inner { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .ribbon-label { grid-column: 1 / -1; }
  .ribbon-inner h2, .ribbon-inner p { grid-column: 1; }
  .ribbon-inner a { grid-column: 2; grid-row: 2 / span 2; }
  .journey-row { grid-template-columns: 62px 30px minmax(230px, 1fr) minmax(165px, 0.58fr) minmax(185px, 0.58fr); gap: 18px; }
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-copy { display: grid; max-width: none; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr); gap: 0 48px; align-items: end; }
  .campaign-copy .eyebrow, .campaign-copy .campaign-number { grid-column: 1; }
  .campaign-copy h2, .campaign-copy > p:not(.campaign-number):not(.eyebrow), .campaign-dates { grid-column: 2; }
  .campaign-copy h2 { grid-row: 1 / span 2; align-self: end; margin-bottom: 22px; }
  .campaign-copy > p:not(.campaign-number):not(.eyebrow) { grid-row: 3; }
  .campaign-dates { grid-row: 4; }
  .campaign-poster { grid-column: 1; grid-row: 3 / span 2; align-self: start; margin-top: 14px; }
  .route-cards { max-width: 820px; margin: 24px auto 0; }
  .stay-feature { grid-template-columns: 44px 1fr; gap: 16px; padding-inline: 24px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; width: 48px; height: 48px; padding: 0; place-items: center; background: transparent; border: 0; cursor: pointer; }
  .menu-button span:not(.sr-only) { grid-area: 1 / 1; width: 25px; height: 1px; background: currentColor; transition: transform 0.35s var(--ease); }
  .menu-button span:nth-child(2) { transform: translateY(-5px); }
  .menu-button span:nth-child(3) { transform: translateY(5px); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 99; inset: 68px 0 auto; display: grid; max-height: calc(100dvh - 68px); gap: 0; padding: 20px max(24px, calc((100vw - 720px) / 2)); overflow-y: auto; color: var(--ink); background: rgba(255, 255, 255, 0.98); box-shadow: 0 30px 50px rgba(6, 45, 61, 0.12); backdrop-filter: blur(16px); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding-block: 15px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-menu > a.is-active:not(.button) { color: var(--ocean); }
  .mobile-menu .button { margin-top: 20px; }

  .hero { min-height: 900px; }
  .hero-slide { object-position: 64% 50%; }
  .hero-slide-c { object-position: 69% 50%; }
  .hero-content { grid-template-columns: 1fr; gap: 28px; padding-top: 112px; padding-bottom: 54px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 6.4vw, 3.7rem); }
  .hero-meta { max-width: 660px; }
  .hero-gallery-status { top: calc(var(--header-h) + 22px); }
  .scroll-cue { display: none; }
  .visual-note { right: 18px; bottom: 12px; }

  .intro-grid, .facts-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-title { max-width: 660px; }
  .intro-body { max-width: 680px; padding-top: 0; margin-left: auto; }
  .tide-line { margin-top: 44px; }

  .journey-row { grid-template-columns: 62px 32px minmax(0, 1fr) minmax(180px, 220px); gap: 20px; padding-block: 38px; }
  .day-photo { grid-column: 4; grid-row: 1; }
  .day-status { grid-column: 3 / 5; grid-row: 2; width: min(100%, 520px); }
  .day-line { grid-row: 1 / span 2; min-height: 210px; }

  .campaign-copy { display: block; }
  .campaign-copy h2 { max-width: 670px; }
  .campaign-copy > p:not(.campaign-number):not(.eyebrow) { max-width: 620px; }
  .campaign-dates { max-width: 620px; }
  .campaign-note { grid-template-columns: 120px 1fr; }
  .campaign-note a { grid-column: 2; justify-self: start; }

  .stay-grid { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr); column-gap: 48px; row-gap: 40px; }
  .stay-gallery { grid-template-rows: repeat(3, clamp(180px, 27vw, 240px)); }
  .stay-features { grid-template-columns: 1fr; }
  .stay-feature + .stay-feature { border-top: 1px solid var(--line); border-left: 0; }
  .stay-feature { grid-template-columns: 58px 1fr; }

  .gifts-heading { grid-template-columns: 1fr; }
  .gifts-heading .eyebrow { grid-column: 1; }
  .gifts-heading > p:last-child { max-width: 450px; }
  .gift-card { min-height: 360px; padding: 32px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-top nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 38px, 1180px); }
  body { padding-bottom: 76px; }
  .section-pad { padding-block: 64px; }
  .site-header { padding-inline: 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark svg { width: 34px; }
  .brand-copy strong { font-size: 0.72rem; }
  .brand-copy small { font-size: 0.49rem; }

  .hero { display: block; min-height: 0; padding-top: var(--header-h); color: var(--ink); background: var(--white); }
  .hero-media { position: relative; inset: auto; height: clamp(330px, 88vw, 500px); }
  .hero-slide { object-position: 69% 50%; }
  .hero-slide-c { object-position: 73% 50%; }
  .orbit-one { top: 16%; right: -90px; width: 240px; height: 240px; }
  .orbit-two { display: none; }
  .hero-content { gap: 14px; margin-top: -28px; padding-top: 0; padding-bottom: 42px; }
  .hero-copy h1 { margin-bottom: 20px; font-size: clamp(2.3rem, 7.6vw, 3.2rem); line-height: 1.1; }
  .hero-lead { margin-bottom: 26px; font-size: 1rem; line-height: 1.85; }
  .desktop-only { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-meta { width: 100%; }
  .hero-meta div { padding: 16px 15px; }
  .hero-meta strong { font-size: 0.92rem; }
  .hero-gallery-status { top: calc(var(--header-h) + 18px); right: 16px; width: 114px; gap: 6px; padding: 10px 11px; }
  .hero-gallery-status span { grid-template-columns: 30px 1fr; gap: 7px; }
  .hero-gallery-status span b { font-size: 0.46rem; letter-spacing: 0.07em; }
  .visual-note { display: none; }

  .campaign-ribbon { padding-block: 20px; }
  .ribbon-inner { grid-template-columns: 1fr; }
  .ribbon-inner h2, .ribbon-inner p, .ribbon-inner a { grid-column: 1; grid-row: auto; }
  .ribbon-inner a { justify-self: start; margin-top: 8px; }
  .marquee-set { gap: 18px; padding-block: 11px; }
  .marquee-set span { font-size: 0.57rem; }
  .section-index { top: 42px; right: 12px; font-size: clamp(5.8rem, 25vw, 8rem); }

  .intro-title h2, .section-heading h2, .campaign-copy h2, .stay-heading h2, .gifts-heading h2, .facts-heading h2 { font-size: clamp(2rem, 8vw, 2.65rem); line-height: 1.16; }
  .intro-body .lead-copy { font-size: 1.08rem; }
  .intro-body p { margin-bottom: 16px; }
  .editorial-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 280px 184px; gap: 10px; margin-top: 40px; }
  .collage-main { grid-area: 1 / 1 / 2 / 3; }
  .collage-breakfast { grid-area: 2 / 1 / 3 / 2; }
  .collage-deck { grid-area: 2 / 2 / 3 / 3; }
  .photo-frame figcaption { padding: 7px 9px; font-size: 0.75rem; }
  .photo-frame figcaption span { font-size: 0.7rem; }
  .collage-main figcaption, .stay-photo-main figcaption { padding: 8px 10px; font-size: 0.8rem; }

  .tide-line { margin-top: 34px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading > p:last-child { margin-left: 0; }
  .journey-row { grid-template-columns: 58px 26px 1fr; gap: 14px; padding-block: 30px; }
  .day-line { grid-row: 1 / span 3; }
  .day-photo { grid-column: 3; grid-row: 2; width: 100%; height: 180px; }
  .day-status { grid-column: 3; grid-row: 3; width: 100%; }
  .day-index strong { font-size: 2.35rem; }
  .day-copy h3 { font-size: 1.55rem; }
  .day-copy > p:last-child { font-size: 1rem; }
  .day-status { padding: 18px; }

  .campaign-number { font-size: 5.5rem; }
  .route-cards { grid-template-columns: 1fr; gap: 14px; }
  .route-card, .route-card.coral { min-height: 360px; transform: none; }
  .route-card:hover, .route-card.coral:hover { transform: none; }
  .route-icon { margin-block: 34px 24px; }
  .campaign-note { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; padding: 22px; }
  .campaign-note a { grid-column: 1; }

  .stay-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .stay-award { width: min(100%, 310px); min-height: 286px; margin-inline: auto; }
  .stay-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 290px 180px 180px; gap: 10px; }
  .stay-gallery > :nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
  .stay-gallery > :nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
  .stay-gallery > :nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
  .stay-gallery > :nth-child(4) { grid-area: 3 / 1 / 4 / 2; }
  .stay-gallery > :nth-child(5) { grid-area: 3 / 2 / 4 / 3; }
  .stay-features { margin-top: 0; }
  .stay-feature { grid-template-columns: 44px 1fr; gap: 14px; padding: 26px 20px; }

  .gift-grid { grid-template-columns: 1fr; }
  .gift-card { min-height: auto; }
  .gift-card:hover { transform: none; }
  .gift-card svg { margin-block: 30px 22px; }

  .facts-list div { grid-template-columns: 110px 1fr; gap: 18px; }
  .final-cta { display: block; min-height: 0; background: var(--white); }
  .final-picture { position: relative; inset: auto; height: clamp(320px, 88vw, 480px); }
  .final-picture img { object-position: 68% 68%; }
  .final-ripples { top: 90px; right: -92px; bottom: auto; width: 280px; }
  .final-content { margin-top: -26px; padding-block: 0 48px; }
  .final-panel { padding: 32px 26px; }
  .final-content h2 { font-size: clamp(2.25rem, 9.5vw, 3.2rem); }
  .footer-bottom { grid-template-columns: 1fr; }

  .mobile-sticky { position: fixed; z-index: 90; right: 12px; bottom: max(10px, env(safe-area-inset-bottom)); left: 12px; display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; color: var(--ink); background: var(--sun); border: 1px solid rgba(6, 45, 61, 0.16); border-radius: 99px; box-shadow: 0 16px 38px rgba(6, 45, 61, 0.28); font-size: 0.92rem; font-weight: 800; line-height: 1.25; }
  .mobile-sticky span { display: grid; gap: 2px; }
  .mobile-sticky small { font-size: 0.7rem; letter-spacing: 0.06em; opacity: 0.68; }
  .mobile-sticky svg { width: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; }

}

@media (max-width: 430px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .hero-copy { padding: 28px 20px; }
  .hero-copy h1 { font-size: clamp(1.75rem, 8vw, 2.3rem); letter-spacing: -0.04em; }
  .hero-copy h1 .heading-line { white-space: nowrap; }
  .intro-title h2, .section-heading h2, .campaign-copy h2, .stay-heading h2, .gifts-heading h2, .facts-heading h2 { font-size: clamp(1.72rem, 7.7vw, 2.1rem); }
  .hero-gallery-status { width: 54px; padding-inline: 10px; }
  .hero-gallery-status span { grid-template-columns: 1fr; }
  .hero-gallery-status span b { display: none; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div:nth-child(odd) { border-right: 0; }
  .hero-meta div:not(:last-child) { border-bottom: 1px solid var(--line); }
  .campaign-number { font-size: 4.8rem; }
  .campaign-dates div { grid-template-columns: 1fr; gap: 3px; padding-block: 10px; }
  .campaign-dates dd { font-size: 0.88rem; }
  .route-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .route-card { padding: 28px 26px; }
  .journey-row { grid-template-columns: 44px minmax(0, 1fr); gap: 14px 16px; align-items: start; }
  .day-index { grid-column: 1; grid-row: 1; }
  .day-line { grid-column: 1; grid-row: 2 / span 2; min-height: 260px; }
  .day-copy { grid-column: 2; grid-row: 1; }
  .day-photo { grid-column: 2; grid-row: 2; }
  .day-status { grid-column: 2; grid-row: 3; }
  .day-copy h3 { font-size: 1.42rem; }
  .editorial-collage { grid-template-columns: 1fr; grid-template-rows: 230px 170px 170px; margin-top: 34px; }
  .collage-main { grid-area: 1 / 1 / 2 / 2; }
  .collage-breakfast { grid-area: 2 / 1 / 3 / 2; }
  .collage-deck { grid-area: 3 / 1 / 4 / 2; }
  .stay-award strong { font-size: 2.65rem; }
  .stay-gallery { grid-template-columns: 1fr; grid-template-rows: 230px repeat(4, 175px); }
  .stay-gallery > :nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
  .stay-gallery > :nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
  .stay-gallery > :nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
  .stay-gallery > :nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
  .stay-gallery > :nth-child(5) { grid-area: 5 / 1 / 6 / 2; }
  .facts-list div { grid-template-columns: 1fr; gap: 6px; }
  .button { width: 100%; }
}

@media (max-width: 360px) {
  .hero-copy h1 { font-size: 1.72rem; }
  .intro-title h2, .section-heading h2, .campaign-copy h2, .stay-heading h2, .gifts-heading h2, .facts-heading h2 { font-size: 1.7rem; }
  .keep-together { display: inline; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; clip-path: none !important; }
  .hero-slide { display: none; opacity: 1; transform: none; animation: none !important; }
  .hero-slide-a { display: block; }
  .hero-gallery-status span, .hero-gallery-status span i::after, .blue-marquee-track { animation: none !important; }
  .hero-gallery-status span:not(.status-a) { display: none; }
  .photo-frame img { transform: scale(1.03) !important; }
  .final-picture img { animation: none !important; transform: scale(1.03) !important; }
  .final-ripples { display: none; }
  .day-line::after { transform: translate(-50%, -50%) scaleY(1) !important; }
}

/* Okinawa-inspired visual system: original color and geometric motifs */
.island-weave {
  position: relative;
  z-index: 4;
  height: 18px;
  overflow: hidden;
  background-color: var(--ryukyu-indigo);
  background-image:
    linear-gradient(45deg, transparent 38%, var(--turmeric) 38% 53%, transparent 53%),
    linear-gradient(-45deg, transparent 38%, var(--hibiscus) 38% 53%, transparent 53%);
  background-position: 0 0, 14px 0;
  background-size: 28px 28px;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.18), inset 0 -3px 0 rgba(0, 174, 187, 0.75);
  animation: weave-travel 18s linear infinite;
}

.island-weave-deep {
  background-color: var(--turmeric);
  background-image:
    linear-gradient(45deg, transparent 38%, var(--ryukyu-indigo) 38% 53%, transparent 53%),
    linear-gradient(-45deg, transparent 38%, var(--hibiscus) 38% 53%, transparent 53%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.28), inset 0 -3px 0 var(--ocean);
}

@keyframes weave-travel { to { background-position: 56px 0, 70px 0; } }

.island-rail {
  position: fixed;
  z-index: 84;
  top: 50%;
  right: 18px;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 58px;
  padding: 13px 8px 10px;
  color: var(--white);
  background: var(--ryukyu-indigo);
  border-top: 3px solid var(--turmeric);
  box-shadow: 0 18px 46px rgba(3, 36, 56, 0.2);
  transform: translateY(-42%);
}

.island-rail::after {
  width: 1px;
  height: 18px;
  margin-top: 3px;
  content: "";
  background: linear-gradient(var(--lagoon), var(--turmeric), var(--hibiscus));
}

.rail-title {
  margin-bottom: 4px;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.island-rail a {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s ease, transform 0.35s var(--ease);
}

.island-rail a i {
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.island-rail a span {
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  width: max-content;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--white);
  border-left: 3px solid var(--hibiscus);
  box-shadow: 0 10px 28px rgba(3, 36, 56, 0.14);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.3s ease, transform 0.35s var(--ease);
}

.island-rail a:hover span,
.island-rail a:focus-visible span { opacity: 1; transform: translate(0, -50%); }
.island-rail a:hover { border-color: var(--turmeric); transform: scale(1.08); }
.island-rail a.is-active { color: var(--ink); background: var(--turmeric); border-color: var(--turmeric); transform: scale(1.12); }
.island-rail a.is-active::after { position: absolute; inset: -5px; content: ""; border: 1px solid rgba(243, 185, 52, 0.52); border-radius: 50%; animation: rail-pulse 2.4s ease-out infinite; }
@keyframes rail-pulse { 70%, 100% { opacity: 0; transform: scale(1.45); } }

.island-botanical {
  --botanical-turn: scaleX(1);
  position: absolute;
  z-index: 0;
  width: clamp(330px, 37vw, 610px);
  height: auto;
  opacity: 0.88;
  pointer-events: none;
  user-select: none;
  animation: botanical-drift 9s ease-in-out infinite;
  will-change: transform;
}

.island-botanical-intro { top: 8%; right: clamp(-280px, -14vw, -150px); }
.island-botanical-gifts { --botanical-turn: scaleX(-1); bottom: -190px; left: clamp(-280px, -15vw, -160px); opacity: 0.76; }
@keyframes botanical-drift {
  0%, 100% { transform: translate3d(0, 0, 0) var(--botanical-turn); }
  50% { transform: translate3d(0, -14px, 0) var(--botanical-turn); }
}

.eyebrow::after {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  content: "";
  background: var(--hibiscus);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  box-shadow: 0 0 0 4px rgba(233, 79, 61, 0.1);
  transform: rotate(45deg);
}

.eyebrow.light::after { background: var(--turmeric); }
.eyebrow.warm::after { background: var(--ryukyu-indigo); }

.hero-copy,
.final-panel { isolation: isolate; }

.final-panel::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 13px;
  content: "";
  background:
    linear-gradient(135deg, transparent 35%, var(--turmeric) 35% 60%, transparent 60%) 0 0 / 13px 26px,
    linear-gradient(45deg, transparent 35%, var(--hibiscus) 35% 60%, transparent 60%) 0 13px / 13px 26px,
    var(--ryukyu-indigo);
}

.hero-copy { border-left-color: var(--turmeric); }
.hero-copy h1 em,
.final-content h2 em { color: var(--turmeric); }

.blue-marquee { background: var(--ryukyu-indigo); }
.marquee-set i { width: 7px; height: 7px; background: var(--hibiscus); border-radius: 1px; box-shadow: 0 0 0 4px rgba(255, 210, 123, 0.14); transform: rotate(45deg); }
.campaign-ribbon { background: var(--turmeric); }
.ribbon-label { color: var(--ryukyu-indigo); }

.section-index {
  color: rgba(18, 63, 109, 0.065);
  -webkit-text-stroke: 1px rgba(18, 63, 109, 0.055);
}

.intro-title h2::after,
.section-heading h2::after,
.campaign-copy h2::after,
.stay-heading h2::after,
.gifts-heading h2::after,
.facts-heading h2::after {
  height: 5px;
  background: linear-gradient(90deg, var(--ryukyu-indigo) 0 28%, var(--lagoon) 28% 58%, var(--turmeric) 58% 78%, var(--hibiscus) 78%);
}

.collage-main { box-shadow: 14px 14px 0 rgba(243, 185, 52, 0.92), 0 28px 70px rgba(6, 63, 99, 0.14); }
.collage-breakfast { box-shadow: 9px -9px 0 rgba(233, 79, 61, 0.84), 0 24px 64px rgba(6, 63, 99, 0.14); }
.collage-deck { box-shadow: 9px 9px 0 rgba(0, 174, 187, 0.82), 0 24px 64px rgba(6, 63, 99, 0.14); }
.stay-photo-main { box-shadow: -14px 14px 0 rgba(0, 174, 187, 0.78), 0 28px 70px rgba(6, 63, 99, 0.14); }

.journey { background: var(--ryukyu-indigo); }
.journey::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.085) 0 1px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.journey-row:nth-child(2) .day-index strong { color: #7be3da; }
.journey-row:nth-child(3) .day-index strong { color: var(--hibiscus); }
.route-card { background-color: var(--ryukyu-indigo); background-image: linear-gradient(135deg, transparent 0 84%, rgba(0, 174, 187, 0.24) 84% 88%, transparent 88%); }
.route-card.coral { background-color: var(--turmeric); background-image: linear-gradient(135deg, transparent 0 84%, rgba(233, 79, 61, 0.28) 84% 88%, transparent 88%); }

.stay-award { background: var(--ryukyu-indigo); box-shadow: 0 35px 70px rgba(18, 63, 109, 0.25); }
.stay-award::after { border-color: rgba(233, 79, 61, 0.45); }
.stay-feature:nth-child(1) .feature-no { color: var(--ryukyu-indigo); }
.stay-feature:nth-child(2) .feature-no { color: var(--hibiscus); }
.stay-feature:nth-child(3) .feature-no { color: var(--island-leaf); }

.gift-card { border-bottom: 5px solid var(--ryukyu-indigo); }
.gift-card:nth-child(2) { border-bottom-color: var(--hibiscus); }
.gift-card:nth-child(3) { border-bottom-color: var(--island-leaf); }
.gift-card:nth-child(1) svg { stroke: var(--ryukyu-indigo); }
.gift-card:nth-child(2) svg { stroke: var(--hibiscus); }
.gift-card:nth-child(3) svg { stroke: var(--island-leaf); }

.facts-list div:nth-child(3n + 1) dt::before { background: var(--turmeric); border-color: var(--ryukyu-indigo); }
.facts-list div:nth-child(3n + 2) dt::before { background: var(--hibiscus); border-color: var(--hibiscus); }
.facts-list div:nth-child(3n) dt::before { background: var(--lagoon); border-color: var(--lagoon); }
.facts-list div:hover { background: #eefaf7; }

.site-footer { background: var(--ryukyu-indigo); border-top: 7px solid var(--turmeric); }
.site-footer::after { position: absolute; right: 0; bottom: 0; left: 0; height: 8px; content: ""; background: linear-gradient(90deg, var(--lagoon) 0 25%, var(--turmeric) 25% 50%, var(--hibiscus) 50% 75%, var(--island-leaf) 75%); }

@media (max-width: 1240px) {
  .island-rail { display: none; }
}

@media (max-width: 860px) {
  .island-botanical { width: clamp(280px, 48vw, 430px); opacity: 0.76; }
  .island-botanical-intro { top: 18%; right: -180px; }
  .island-botanical-gifts { bottom: -110px; left: -170px; }
  .collage-main { box-shadow: 10px 10px 0 rgba(243, 185, 52, 0.9), 0 22px 55px rgba(6, 63, 99, 0.12); }
  .stay-photo-main { box-shadow: -10px 10px 0 rgba(0, 174, 187, 0.72), 0 22px 55px rgba(6, 63, 99, 0.12); }
}

@media (max-width: 680px) {
  .island-weave { height: 13px; background-size: 22px 22px; background-position: 0 0, 11px 0; }
  .island-botanical { width: 280px; }
  .island-botanical-intro { top: 29%; right: -150px; opacity: 0.64; }
  .island-botanical-gifts { bottom: -60px; left: -150px; opacity: 0.58; }
  .eyebrow { gap: 9px; letter-spacing: 0.17em; }
  .eyebrow::after { width: 8px; height: 8px; }
  .final-panel::before { width: 9px; background-size: 9px 18px, 9px 18px, auto; background-position: 0 0, 0 9px, 0 0; }
  .collage-main, .collage-breakfast, .collage-deck, .stay-photo-main { box-shadow: 0 18px 44px rgba(6, 63, 99, 0.14); }
}

@media (prefers-reduced-motion: reduce) {
  .island-weave, .island-botanical, .island-rail a.is-active::after { animation: none !important; }
}

/* v10 — HIS travel confidence × vivid Okinawa island color */
.site-header {
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: clamp(18px, 3vw, 46px);
  background: linear-gradient(110deg, var(--his-navy), var(--his-blue) 72%, var(--his-blue-bright));
  border-bottom: 3px solid var(--turmeric);
}

.site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--his-cyan) 0 38%, var(--turmeric) 38% 68%, var(--hibiscus) 68% 84%, var(--island-leaf) 84%);
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--his-blue);
}

.brand { gap: 10px; }
.his-lockup { display: grid; min-width: 62px; gap: 5px; color: var(--white); line-height: 1; }
.his-lockup strong { font-size: 1.68rem; font-style: italic; font-weight: 900; letter-spacing: -0.075em; line-height: 0.78; }
.his-lockup small { font-size: 0.43rem; font-weight: 800; letter-spacing: 0.1em; white-space: nowrap; }
.brand-separator { width: 1px; height: 36px; flex: 0 0 auto; background: linear-gradient(var(--his-cyan), var(--turmeric), var(--hibiscus)); }
.site-header.scrolled .his-lockup,
.site-header.menu-active .his-lockup { color: var(--his-blue); }
.brand-copy strong { font-size: 0.78rem; letter-spacing: 0.12em; }
.brand-copy small { font-size: 0.5rem; letter-spacing: 0.16em; }

.header-cta {
  min-height: 46px;
  padding: 11px 17px;
  color: var(--his-navy);
  background: var(--turmeric);
  border: 0;
  border-radius: 2px 18px 2px 2px;
  box-shadow: 0 10px 28px rgba(0, 40, 82, 0.2);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.header-cta:hover,
.header-cta:focus-visible { color: var(--his-blue); background: var(--white); box-shadow: 0 14px 34px rgba(0, 40, 82, 0.28); transform: translateY(-2px); }

.hero { background: var(--his-navy); }
.hero-content { z-index: 3; }
.hero-copy {
  background: linear-gradient(135deg, rgba(0, 52, 101, 0.82), rgba(0, 91, 172, 0.82));
  border-left: 5px solid var(--turmeric);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 38px 0 0;
  box-shadow: 0 30px 76px rgba(0, 35, 72, 0.34);
}

.hero-brandline,
.final-brandline { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 13px; margin-bottom: 19px; }
.his-pill { display: inline-grid; min-width: 48px; min-height: 28px; place-items: center; padding: 5px 10px; color: var(--his-blue); background: var(--white); font-size: 0.82rem; font-style: italic; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.hero-brandline strong,
.final-brandline strong { color: var(--white); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.17em; }
.hero-brandline small { margin-left: auto; color: var(--turmeric); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; }
.hero-copy .eyebrow { flex-wrap: wrap; font-size: 0.68rem; letter-spacing: 0.15em; }

.hero-botanical {
  position: absolute;
  z-index: 1;
  right: clamp(-170px, -7vw, -70px);
  bottom: clamp(-150px, -8vw, -70px);
  width: clamp(330px, 31vw, 540px);
  height: auto;
  pointer-events: none;
  user-select: none;
  animation: hero-botanical-drift 10s ease-in-out infinite;
  transform-origin: 70% 80%;
}

@keyframes hero-botanical-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(-8px, -12px, 0) rotate(1deg); }
}

.hero-island-stamp {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + 34px);
  left: clamp(22px, 5.5vw, 92px);
  display: grid;
  width: 136px;
  aspect-ratio: 1;
  place-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 35, 72, 0.38);
  transform: rotate(-7deg);
  animation: island-stamp-float 7s ease-in-out infinite;
}
.hero-island-stamp::before { position: absolute; inset: 7px; content: ""; border: 1px dashed rgba(255, 255, 255, 0.48); border-radius: inherit; }
.hero-island-stamp span,
.hero-island-stamp small { font-size: 0.47rem; font-weight: 800; letter-spacing: 0.18em; }
.hero-island-stamp strong { margin-block: 5px; color: var(--turmeric); font-size: 1.03rem; letter-spacing: 0.08em; }
@keyframes island-stamp-float { 50% { transform: translateY(-7px) rotate(-5deg); } }

.hero-gallery-status { background: var(--his-navy); border-top-color: var(--turmeric); }
.hero-meta { border: 0; border-top: 5px solid var(--his-blue); box-shadow: 0 24px 64px rgba(0, 35, 72, 0.25); }
.hero-meta-title {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: -10px -10px 8px;
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(100deg, var(--his-navy), var(--his-blue));
  line-height: 1.4;
}
.hero-meta-title span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; }
.hero-meta-title strong { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; }
.hero-meta div:nth-child(odd) { border-right: 0; }
.hero-meta div:nth-child(-n + 2) { border-bottom: 0; }
.hero-meta > div:nth-of-type(odd) { border-right: 1px solid var(--line); }
.hero-meta > div:nth-of-type(-n + 2) { border-bottom: 1px solid var(--line); }
.hero-meta div > span { color: var(--his-blue); }

.campaign-ribbon { background: linear-gradient(90deg, var(--turmeric), #ffe79b 72%, #fff0b8); border-bottom: 4px solid var(--his-blue); }
.ribbon-label { display: inline-flex; align-items: center; gap: 10px; color: var(--his-navy); }
.ribbon-label strong { padding: 7px 10px 6px; color: var(--white); background: var(--his-blue); font-size: 0.78rem; font-style: italic; letter-spacing: -0.02em; line-height: 1; }
.ribbon-label span { margin: 0; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; vertical-align: initial; }
.blue-marquee { background: linear-gradient(90deg, var(--his-navy), var(--his-blue), var(--ryukyu-indigo)); }
.marquee-set { padding-block: 15px; }
.marquee-set span { font-size: 0.66rem; letter-spacing: 0.24em; }

.intro { background: linear-gradient(180deg, #fff 0%, #fff 48%, #eafaff 100%); }
.intro::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 2%;
  content: "MIYAKOJIMA / OKINAWA";
  color: rgba(0, 91, 172, 0.035);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}
.island-weave { height: 22px; background-color: var(--his-blue); box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.2), inset 0 -4px 0 rgba(0, 183, 206, 0.8); }
.photo-frame figcaption { background: var(--his-navy); }

.journey { background: linear-gradient(145deg, var(--his-navy), #0b477f 56%, var(--ryukyu-indigo)); }
.journey .section-heading { margin-bottom: 30px; }
.journey-pass {
  position: relative;
  display: grid;
  grid-template-columns: minmax(100px, 0.9fr) auto minmax(150px, 1.2fr) minmax(100px, 0.8fr) minmax(90px, 0.65fr) auto;
  align-items: center;
  gap: 16px 24px;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  border-left: 6px solid var(--turmeric);
  box-shadow: 0 16px 44px rgba(0, 22, 47, 0.2);
}
.journey-pass::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; content: ""; background: linear-gradient(90deg, var(--his-blue), var(--his-cyan), var(--turmeric), var(--hibiscus)); background-size: 180% 100%; animation: pass-line 5s linear infinite alternate; }
@keyframes pass-line { to { background-position: 100% 0; } }
.journey-pass div { display: grid; min-width: 0; gap: 3px; }
.journey-pass div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.journey-pass span { color: var(--his-blue); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; }
.journey-pass strong { font-size: 0.95rem; line-height: 1.4; white-space: nowrap; }
.journey-pass > i { color: var(--his-blue); font-size: 1.35rem; font-style: normal; }
.journey-pass > em { padding: 9px 12px; color: var(--his-navy); background: var(--turmeric); font-family: inherit; font-size: 0.59rem; font-style: normal; font-weight: 900; letter-spacing: 0.12em; white-space: nowrap; }
.day-kicker { color: #74e9ee; }

.campaign { background-color: #fff8e9; background-image: linear-gradient(135deg, rgba(0, 91, 172, 0.028) 25%, transparent 25% 75%, rgba(233, 79, 61, 0.026) 75%); background-size: 44px 44px; }
.campaign-number { color: var(--hibiscus); }
.campaign-poster { border: 8px solid var(--white); outline: 1px solid rgba(0, 91, 172, 0.13); }
.route-card { background-color: var(--his-blue); border-top: 7px solid var(--his-cyan); }
.route-card.coral { background-color: var(--turmeric); border-top-color: var(--hibiscus); }
.route-topline span:first-child { padding: 5px 8px; color: var(--his-navy); background: var(--turmeric); }
.route-card.coral .route-topline span:first-child { color: var(--white); background: var(--his-navy); }
.campaign-note { border-left: 5px solid var(--his-blue); }

.stay-award { background: linear-gradient(145deg, var(--his-navy), var(--his-blue)); box-shadow: 0 35px 70px rgba(0, 69, 135, 0.28); }
.stay-award::before { border-color: rgba(255, 255, 255, 0.48); }
.stay-award::after { border-color: rgba(243, 185, 52, 0.62); }
.stay-award span { color: #d9f7ff; }
.stay-feature { border-top: 4px solid transparent; }
.stay-feature:nth-child(1) { border-top-color: var(--his-blue); }
.stay-feature:nth-child(2) { border-top-color: var(--hibiscus); }
.stay-feature:nth-child(3) { border-top-color: var(--island-leaf); }

.gifts { background-color: #fff6df; background-image: radial-gradient(circle at center, rgba(0, 91, 172, 0.055) 0 1px, transparent 1.5px); background-size: 28px 28px; }
.gift-card { border-top: 1px solid rgba(0, 91, 172, 0.12); }
.gift-card > span { display: inline-grid; width: 38px; height: 27px; place-items: center; color: var(--white); background: var(--his-blue); }
.gift-card:nth-child(2) > span { background: var(--hibiscus); }
.gift-card:nth-child(3) > span { background: var(--island-leaf); }

.facts-list { border-top: 4px solid var(--his-blue); }
.facts-list dt { color: var(--his-blue); }
.final-panel { background: linear-gradient(135deg, rgba(0, 52, 101, 0.82), rgba(0, 91, 172, 0.82)); border-top-color: var(--turmeric); border-radius: 0 46px 0 0; }
.final-brandline { margin-bottom: 17px; }
.final-brandline .his-pill { color: var(--his-blue); }
.final-ripples i:nth-child(2) { border-color: rgba(243, 185, 52, 0.48); }
.final-ripples i:nth-child(3) { border-color: rgba(0, 183, 206, 0.55); }

.site-footer { background: linear-gradient(135deg, var(--his-navy), #073f75 65%, var(--ryukyu-indigo)); border-top-color: var(--turmeric); }
.footer-brand .his-lockup { color: var(--white); }
.footer-brand:hover .his-lockup { animation: footer-his 0.7s var(--ease); }
@keyframes footer-his { 50% { transform: translateY(-4px); } }
.mobile-sticky { color: var(--white); background: linear-gradient(100deg, var(--his-blue), var(--his-blue-bright)); border-color: rgba(255, 255, 255, 0.26); }
.mobile-sticky small { color: var(--turmeric); opacity: 1; }

@media (max-width: 1080px) {
  .site-header { gap: 18px; padding-inline: 24px; }
  .desktop-nav { gap: 20px; }
  .header-cta { padding-inline: 14px; font-size: 0.8rem; }
  .hero-island-stamp { left: 28px; }
  .journey-pass { gap: 14px 16px; }
  .journey-pass div + div { padding-left: 14px; }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .hero-botanical { right: -120px; bottom: -60px; width: 430px; }
  .hero-island-stamp { top: calc(var(--header-h) + 24px); left: 22px; width: 118px; }
  .journey-pass { grid-template-columns: 1fr auto 1.25fr 0.8fr 0.65fr; }
  .journey-pass > em { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 14px; }
  .his-lockup { min-width: 52px; gap: 4px; }
  .his-lockup strong { font-size: 1.38rem; }
  .his-lockup small { font-size: 0.37rem; }
  .brand-separator { height: 30px; }
  .brand-copy strong { font-size: 0.67rem; }
  .brand-copy small { font-size: 0.43rem; letter-spacing: 0.12em; }

  .hero-botanical { top: calc(var(--header-h) + 155px); right: -76px; bottom: auto; width: 255px; }
  .hero-island-stamp { top: calc(var(--header-h) + 18px); left: 16px; width: 100px; }
  .hero-island-stamp strong { font-size: 0.82rem; }
  .hero-island-stamp span,
  .hero-island-stamp small { font-size: 0.38rem; }
  .hero-copy { border-radius: 0 28px 0 0; }
  .hero-brandline { align-items: flex-start; }
  .hero-brandline small { width: 100%; margin-left: 0; }
  .hero-copy .eyebrow { font-size: 0.59rem; letter-spacing: 0.1em; }
  .hero-meta-title { align-items: flex-start; flex-direction: column; gap: 3px; }

  .ribbon-label { gap: 8px; }
  .journey .section-heading { margin-bottom: 24px; }
  .journey-pass { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.25fr); gap: 12px; padding: 16px; }
  .journey-pass > div:nth-of-type(3) { grid-column: 1; }
  .journey-pass > div:nth-of-type(4) { grid-column: 3; }
  .journey-pass div + div { padding-left: 0; border-left: 0; }
  .journey-pass > em { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
  .journey-pass span { font-size: 0.52rem; }
  .journey-pass strong { font-size: 0.88rem; }
  .island-weave { height: 16px; }
  .final-panel { border-radius: 0 30px 0 0; }
}

@media (max-width: 430px) {
  .hero-botanical { top: calc(var(--header-h) + 145px); right: -68px; width: 218px; }
  .hero-island-stamp { width: 88px; }
  .hero-meta > div:nth-of-type(odd) { border-right: 0; }
  .hero-brandline strong { font-size: 0.58rem; letter-spacing: 0.12em; }
  .hero-copy .eyebrow .keep-together { display: inline-block; white-space: nowrap; }
  .his-pill { min-width: 43px; min-height: 25px; font-size: 0.74rem; }
  .button { gap: 8px; padding-inline: 14px; font-size: 0.8rem; letter-spacing: 0.015em; }
  .ribbon-label span { font-size: 0.66rem; letter-spacing: 0.11em; }
  .journey-pass { gap: 11px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-botanical,
  .hero-island-stamp,
  .journey-pass::after,
  .footer-brand:hover .his-lockup { animation: none !important; }
}
