/* ─────────────────────────────────────────────────────────────────
   stellare bonin — luxury resort on the Ogasawara Islands
   Base CSS. Theme tokens are written to :root from React.
   Webfonts は index.html 側で preconnect + <link> プリロード済。
   ───────────────────────────────────────────────────────────────── */

:root {
  /* default palette — bonin (蒼の宿) — JSによる上書きと完全一致 */
  --bg:        #f2ece0;
  --bg-2:      #e5dcc8;
  --ink:       #0a1a28;
  --ink-2:     #142a3a;
  --muted:     #586a78;
  --rule:      rgba(10, 26, 40, 0.18);
  --rule-soft: rgba(10, 26, 40, 0.10);
  --accent:    #1a4a6a;           /* bonin deep blue */
  /* Phase 3.A: 2色パレット絞り（ロールバック容易性のためコメントアウトで保持） */
  /* --accent-2:  #5fb3c4; */       /* turquoise accent */
  --deep:      #0b2a3a;           /* bonin deep（既存維持・hero背景） */
  --sea:       #1a4a6a;
  /* --warm:      #d96a3a; */

  --serif-jp:   "Shippori Mincho B1", "Zen Old Mincho", "Yu Mincho", "ＭＳ Ｐ明朝", serif;
  --serif-en:   "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans-jp:    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --max:        1320px;
  --gutter:     clamp(20px, 4vw, 64px);
}

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

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

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif-jp);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ────────────────────── Type system ────────────────────── */

.eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}
.eyebrow.solid { font-style: normal; letter-spacing: 0.32em; }

.h-display {
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.18;
  font-size: clamp(40px, 6vw, 88px);
  margin: 0;
}
.h-section {
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  font-size: clamp(28px, 3.6vw, 56px);
  margin: 0;
}
.h-en {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 2.4vw, 36px);
  color: var(--muted);
  margin: 0;
}
.h-en-cap {
  font-family: var(--serif-en);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.body-jp { font-family: var(--serif-jp); font-weight: 400; line-height: 1.95; letter-spacing: 0.05em; }
.body-sm  { font-family: var(--sans-jp); font-size: 13px; line-height: 1.85; letter-spacing: 0.04em; color: var(--muted); }

p { margin: 0 0 1em; }

/* ────────────────────── Layout helpers ────────────────────── */

.wrap     { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-md  { max-width: 980px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-sm  { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }

.section {
  padding-block: clamp(80px, 12vh, 160px);
  position: relative;
}
.section--tight { padding-block: clamp(48px, 8vh, 96px); }

.divider {
  width: 1px;
  height: 96px;
  background: var(--rule);
  margin: 0 auto;
}
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

.tate {
  writing-mode: vertical-rl;
  font-feature-settings: "vert" 1;
}

/* ────────────────────── Nav ────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 600ms ease, color 600ms ease, border-color 600ms ease, backdrop-filter 600ms ease;
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(242, 236, 224, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__brand {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.nav__brand b {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  padding-left: 12px;
  border-left: 1px solid currentColor;
  border-left-color: var(--rule-soft);
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--sans-jp);
  font-size: 12.5px;
  letter-spacing: 0.16em;
}
.nav__links a { opacity: 0.9; transition: opacity 200ms; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-family: var(--serif-en);
  letter-spacing: 0.28em;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 200ms, color 200ms;
}
.nav--solid .nav__cta:hover { background: var(--ink); color: var(--bg); }
.nav:not(.nav--solid) .nav__cta:hover { background: rgba(255,255,255,0.92); color: var(--ink); }
@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ────────────────────── Hero ────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}
.hero__media {
  position: absolute;
  inset: -8% -2%;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04) saturate(1.08);
}
.hero__slide {
  opacity: 0;
  transition: opacity 1600ms cubic-bezier(.4,.0,.2,1), transform 9000ms ease-out;
  transform: scale(1);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.06);
  z-index: 1;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0) 55%, rgba(11,42,58,0.55) 100%),
    radial-gradient(120% 80% at 50% 65%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.32) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__frame {
  position: absolute;
  inset: 22px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.16);
}
.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid rgba(255,255,255,0.55);
}
.hero__frame::before { top: -1px; left: -1px;   border-right: 0; border-bottom: 0; }
.hero__frame::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0; }

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 110px var(--gutter) 56px;
  gap: 24px;
}

/* Top */
.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero__mark-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  vertical-align: middle;
}
.hero__eye {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.82;
}
.hero__eye i {
  font-style: normal;
  opacity: 0.55;
  letter-spacing: 0;
}

/* Center */
.hero__center {
  align-self: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero__overline {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.22em;
  opacity: 0.78;
  margin-bottom: 32px;
}
.hero__title {
  font-family: var(--serif-jp);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.08;
  font-size: clamp(56px, 9vw, 132px);
  text-shadow: 0 1px 40px rgba(0,0,0,0.45);
  margin: 0 0 28px;
}
.hero__title-em {
  letter-spacing: 0.06em;
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.08em;
  opacity: 0.92;
  margin: 0;
}

/* Foot */
.hero__foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}
.hero__foot-l { text-align: left;  display: flex; flex-direction: column; gap: 6px; }
.hero__foot-r { text-align: right; display: flex; flex-direction: column; gap: 6px; }
.hero__foot-lbl {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.62;
}
.hero__foot-val {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.95;
}
.hero__foot small {
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.66;
  margin-top: 2px;
}

/* Center bottom: counter + bar + scroll */
.hero__foot-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}
.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
}
.hero__counter-now {
  font-size: 28px;
  letter-spacing: 0.04em;
}
.hero__counter-sep {
  font-size: 18px;
  opacity: 0.4;
}
.hero__counter-tot {
  font-size: 14px;
  opacity: 0.55;
  letter-spacing: 0.12em;
}
.hero__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 240px;
}
.hero__bar-seg {
  appearance: none;
  background: rgba(255,255,255,0.18);
  border: 0;
  height: 2px;
  flex: 1;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 300ms ease;
}
.hero__bar-seg:hover {
  background: rgba(255,255,255,0.32);
}
.hero__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: rgba(255,255,255,0.95);
}
.hero__bar-fill.is-past {
  width: 100%;
}
.hero__bar-fill.is-now {
  animation: heroBarFill 6500ms linear forwards;
}
.hero__bar-fill.is-now.is-paused {
  animation: none;
  width: 100%;
}
@keyframes heroBarFill {
  from { width: 0; }
  to   { width: 100%; }
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--serif-en);
  letter-spacing: 0.42em;
  font-size: 10px;
  opacity: 0.78;
  margin-top: 4px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: currentColor;
  opacity: 0.7;
  animation: scrollHint 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0);   opacity: 0; }
  40%  { transform: scaleY(1);   opacity: 0.8; }
  100% { transform: scaleY(1) translateY(40px); opacity: 0; }
}

@media (max-width: 880px) {
  .hero__frame { inset: 14px; }
  .hero__mark-rule { width: 36px; }
  .hero__foot { grid-template-columns: 1fr; gap: 28px; }
  .hero__foot-l, .hero__foot-r { text-align: center; align-items: center; }
  .hero__foot-c { order: -1; }
}

/* ────────────────────── Prologue ────────────────────── */

.prologue {
  background: var(--bg);
  text-align: center;
}
.prologue__no {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 36px;
}
.prologue__lede {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 2.1;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-wrap: balance;
}
.prologue__body {
  margin-top: 56px;
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  text-align: justify;
  text-justify: inter-character;
  max-width: 640px;
  margin-inline: auto;
}

/* ────────────────────── Story blocks (alternating image/text) ────────────────────── */

.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story--rev { grid-template-columns: 1fr 1.05fr; }
.story--rev .story__media { order: 2; }
.story--rev .story__text { order: 1; }

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.04) saturate(1.06);
  will-change: transform;
  transform: scale(1.08);
  display: block;
}
/* Phase 3.G: Phase 3.F の video 重ね合わせ系は撤回。コメントアウトで残置（ロールバック用）。
.story__media img,
.story__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.04) saturate(1.06);
  will-change: transform;
  transform: scale(1.08);
  display: block;
}
.story__media .story__video,
.story__media .story__poster {
  position: absolute;
  inset: 0;
}
.story__media .story__video { z-index: 2; }
.story__media .story__poster { z-index: 1; }
*/
.story__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--serif-en);
  letter-spacing: 0.32em;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
}
.story__num {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 18px;
}
.story__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-size: clamp(30px, 3.6vw, 52px);
  margin: 0 0 8px;
}
.story__title em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.24em;
  margin-top: 14px;
}
.story__body {
  margin-top: 28px;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.story__meta {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  font-family: var(--serif-en);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
}
.story__meta b { display: block; color: var(--ink); font-weight: 500; font-size: 18px; font-family: var(--serif-jp); letter-spacing: 0.04em; text-transform: none; margin-top: 4px; }

@media (max-width: 880px) {
  .story, .story--rev { grid-template-columns: 1fr; }
  .story--rev .story__media, .story--rev .story__text { order: initial; }
}

/* ────────────────────── Full bleed quote ────────────────────── */

.bleed {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  display: grid;
  place-items: center;
  background: var(--deep);
}
.bleed__media {
  position: absolute; inset: -6%;
  z-index: 0;
  will-change: transform;
}
.bleed__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 28% 78%;
  filter: brightness(1.08) contrast(1.05) saturate(1.08);
}
.bleed__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,58,0.05) 0%, rgba(11,42,58,0.15) 55%, rgba(0,0,0,0.55) 100%); }
.bleed__inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 980px;
}
.bleed__quote {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.9;
  letter-spacing: 0.18em;
  margin: 0;
  text-wrap: balance;
}
.bleed__sub {
  margin-top: 28px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.18em;
  font-size: 15px;
  opacity: 0.85;
}

/* ────────────────────── Suites ────────────────────── */

.suites {
  background: var(--bg);
}
.suites__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.suites__head .h-en-cap { white-space: nowrap; }

.suite {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}
.suite:first-of-type { border-top: 1px solid var(--rule); }
.suite:last-of-type { border-bottom: 1px solid var(--rule); }
.suite--rev { grid-template-columns: 1fr 1.3fr; }
.suite--rev .suite__media { order: 2; }
.suite--rev .suite__text  { order: 1; }

.suite__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--ink);
}
.suite__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s ease; }
.suite:hover .suite__media img { transform: scale(1.04); }

.suite__num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: 80px;
  line-height: 0.9;
  color: var(--rule);
  margin: 0 0 18px;
}
.suite__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0;
}
.suite__title em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.5em;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 10px;
}
.suite__body {
  margin: 24px 0 28px;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.suite__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  margin-bottom: 24px;
}
.suite__specs div {
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.suite__specs div b {
  display: block;
  color: var(--ink);
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 6px;
}
.suite__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.suite__price b {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.suite__price span { font-family: var(--sans-jp); font-size: 11.5px; color: var(--muted); letter-spacing: 0.1em; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  transition: gap 220ms ease, color 220ms;
}
.btn-line:hover { gap: 22px; }
.btn-line::after { content: "→"; font-family: var(--serif-en); font-size: 14px; letter-spacing: 0; }

@media (max-width: 880px) {
  .suite, .suite--rev { grid-template-columns: 1fr; }
  .suite--rev .suite__media, .suite--rev .suite__text { order: initial; }
  .suites__head { grid-template-columns: 1fr; }
}

/* ────────────────────── Dining ────────────────────── */
/* Phase 3.F: 旧 .dining__grid / .dining__card 系はコメントアウト残置（ロールバック用）。
   新レイアウトは末尾の Phase 3.F ブロック .dining-fs を参照。 */

/*
.dining { background: var(--ink); color: var(--bg); }
.dining .eyebrow,
.dining .h-en,
.dining .body-sm { color: rgba(242,236,224,0.66); }
.dining .h-en-cap { color: rgba(242,236,224,0.5); }

.dining__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.dining__card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,236,224,0.12);
  overflow: hidden;
  transition: transform 600ms ease, border-color 400ms ease;
}
.dining__card:hover { transform: translateY(-4px); border-color: rgba(242,236,224,0.28); }
.dining__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.dining__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s ease; }
.dining__card:hover .dining__media img { transform: scale(1.06); }
.dining__body { padding: 28px 28px 32px; }
.dining__type {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(242, 236, 224, 0.6);
  margin: 0 0 12px;
}
.dining__name {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  color: var(--bg);
}
.dining__name em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-top: 8px;
}
.dining__desc {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(242,236,224,0.78);
  letter-spacing: 0.04em;
}
.dining__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(242,236,224,0.16);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(242,236,224,0.55);
}

@media (max-width: 980px) {
  .dining__grid { grid-template-columns: 1fr; }
}
*/

/* ────────────────────── Activities ────────────────────── */

.activities { background: var(--bg); }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.act {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  min-height: 280px;
  transition: transform 600ms ease;
}
.act:hover { transform: translateY(-3px); }
.act img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s ease; }
.act:hover img { transform: scale(1.05); }
.act::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
}
.act__body {
  position: absolute;
  z-index: 2;
  left: 28px; right: 28px; bottom: 24px;
}
.act__no {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.3em;
  opacity: 0.8;
}
.act__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.06em;
  margin: 8px 0 6px;
}
.act__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  opacity: 0.78;
}
.act__season {
  position: absolute;
  z-index: 2;
  top: 22px; left: 28px;
  font-family: var(--serif-en);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 10px;
  background: rgba(11,42,58,0.6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.act--lg  { grid-column: span 7; min-height: 480px; }
.act--md  { grid-column: span 5; min-height: 480px; }
.act--sm  { grid-column: span 4; min-height: 320px; }

@media (max-width: 880px) {
  .activities__grid { grid-template-columns: 1fr; }
  .act, .act--lg, .act--md, .act--sm { grid-column: span 1; min-height: 300px; }
}

/* ────────────────────── Access timeline ────────────────────── */

.access {
  background: var(--bg-2);
  position: relative;
}
.access__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.access__lead {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--rule);
  transform: translateX(-50%);
}
.tl {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.tl__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  justify-self: center;
  position: relative;
  z-index: 2;
}
.tl__time {
  font-family: var(--serif-en);
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--muted);
}
.tl__body {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.tl__body em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 4px;
}
.tl__note {
  font-family: var(--sans-jp);
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.tl--left  .tl__time, .tl--left  .tl__note { text-align: right; padding-right: 28px; }
.tl--left  .tl__body { text-align: right; padding-right: 28px; }
.tl--right .tl__time, .tl--right .tl__note { padding-left: 28px; grid-column: 3; }
.tl--right .tl__body { padding-left: 28px; grid-column: 3; }
.tl--left  .tl__col { grid-column: 1; }
.tl--right .tl__col { grid-column: 3; }
.tl--left  .tl__pad-r { grid-column: 3; }
.tl--right .tl__pad-l { grid-column: 1; }

@media (max-width: 740px) {
  .timeline::before { left: 18px; }
  .tl { grid-template-columns: 36px 1fr; gap: 16px; }
  .tl__dot { justify-self: start; }
  .tl--left .tl__time, .tl--left .tl__note, .tl--left .tl__body { text-align: left; padding-right: 0; }
  .tl--left .tl__col, .tl--right .tl__col { grid-column: 2; padding-left: 0; }
  .tl--right .tl__time, .tl--right .tl__note, .tl--right .tl__body { padding-left: 0; }
  .access__head { grid-template-columns: 1fr; gap: 24px; }
}

/* ────────────────────── FAQ ────────────────────── */

.faq { background: var(--bg); }
.faq__list { max-width: 880px; margin: 56px auto 0; }
.q {
  border-top: 1px solid var(--rule);
  padding: 26px 0;
  cursor: pointer;
}
.q:last-child { border-bottom: 1px solid var(--rule); }
.q__row {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: baseline;
  gap: 18px;
}
.q__no {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.q__q {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: 0.06em;
  margin: 0;
}
.q__toggle {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 22px;
  color: var(--muted);
  transition: transform 300ms ease, color 200ms;
  line-height: 1;
}
.q.open .q__toggle { transform: rotate(45deg); color: var(--ink); }
.q__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 400ms;
  opacity: 0;
}
.q.open .q__a { max-height: 320px; opacity: 1; }
.q__a-inner {
  padding: 18px 0 6px 58px;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  max-width: 760px;
}

/* ────────────────────── Footer / reserve ────────────────────── */

.reserve {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: clamp(96px, 16vh, 200px) var(--gutter);
}
.reserve .h-display { color: var(--bg); }
.reserve .h-en { color: rgba(242,236,224,0.55); }
.reserve__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding: 22px 44px;
  border: 1px solid rgba(242,236,224,0.5);
  border-radius: 999px;
  font-family: var(--serif-en);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.reserve__cta:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.reserve__cta::after { content: "→"; }

.foot {
  background: var(--ink-2);
  color: rgba(242,236,224,0.7);
  padding: 56px var(--gutter) 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid rgba(242,236,224,0.1);
}
.foot h5 {
  font-family: var(--serif-en);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(242,236,224,0.5);
  margin: 0 0 18px;
}
.foot p, .foot li { font-family: var(--sans-jp); font-size: 12.5px; line-height: 1.9; letter-spacing: 0.04em; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot__brand b {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--bg);
  display: block;
  margin-bottom: 8px;
}
.foot__copy {
  grid-column: 1 / -1;
  padding-top: 36px;
  margin-top: 12px;
  border-top: 1px solid rgba(242,236,224,0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--serif-en);
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: rgba(242,236,224,0.4);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .foot { grid-template-columns: 1fr 1fr; }
  .foot__copy { flex-direction: column; gap: 12px; }
}

/* ────────────────────── Scroll reveal ────────────────────── */
/* Phase 3.H: スクロールアニメ修復。cubic-bezier(.16,1,.3,1) + will-change で
   フェード/トランスレートをなめらかに。 */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path;
}
.reveal-img.in { clip-path: inset(0 0 0 0); }

/* ────────────────────── Layout variants (tweak) ────────────────────── */

body.layout-classic .suites__head,
body.layout-classic .access__head {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
body.layout-classic .suites__head > div:last-child,
body.layout-classic .access__head > div:last-child,
body.layout-classic .access__lead { text-align: center; }
body.layout-classic .story--rev,
body.layout-classic .suite--rev { grid-template-columns: 1.05fr 1fr; }
body.layout-classic .story--rev .story__media,
body.layout-classic .story--rev .story__text,
body.layout-classic .suite--rev .suite__media,
body.layout-classic .suite--rev .suite__text { order: initial; }

body.layout-editorial .suite__num { font-size: 120px; }
body.layout-editorial .story__num { font-style: italic; }

/* Nocturne palette tweaks — flip nav scrim, footer, etc. */
body.palette-night .nav--solid {
  background: rgba(11, 22, 32, 0.86);
  border-bottom-color: rgba(232, 224, 204, 0.16);
}
body.palette-night .dining { background: #06101a; }
body.palette-night .reserve { background: #06101a; }
body.palette-night .foot { background: #050d15; }
body.palette-night .hero { background: #06101a; }
body.palette-night .access { background: #142634; }

body:not(.show-captions) .story__cap { display: none; }

/* === Phase 2 === */
/* Phase 2 includes: M1 Hero Ken Burns / M2 IO reveal-trigger / M3 nav solid refinements /
   M4 Floating Reserve CTA / S1 Lenis compatibility */

/* ── M1: Hero Ken Burns ──────────────────────────────────────────────
   既存 .hero__slide.is-active は scale(1.06) で 9s transition だが、
   仕様に合わせ scale(1.08) + 7s ease-out に上書き。
   .is-active が外れたら scale(1.0) に戻り、フェードと併存する。 */
.hero__slide {
  transition: opacity 1600ms cubic-bezier(.4,.0,.2,1), transform 7000ms ease-out;
  transform: scale(1.0);
}
.hero__slide.is-active {
  transform: scale(1.08);
}

/* ── M2: IntersectionObserver reveal ───────────────────────────────── */
/* Phase 3.H: cubic-bezier(.16,1,.3,1) / 900ms に統一・will-change 付与 */
.reveal-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-trigger.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-trigger:not(:first-child) {
  transition-delay: 0.15s;
}

/* ── M3: Nav solid 文字色の明示（既存 .nav--solid を補強） ───────── */
.nav.nav--solid a { color: var(--ink); }

/* ── M4: Floating Reserve CTA ──────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: var(--ink, #0a1a28);
  color: var(--bg, #f2ece0);
  padding: 14px 22px;
  font-family: var(--serif-en, "Cormorant Garamond", serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, color 0.2s ease;
  transform: translateY(20px);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(10, 26, 40, 0.18);
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-cta:hover {
  background: var(--accent, #1a4a6a);
  color: var(--bg, #f2ece0);
}
@media (max-width: 720px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 10px;
  }
}

/* ── S1 Lenis compatibility ───────────────────────────────────────────
   既存 html { scroll-behavior: smooth } と Lenis の併存対策。
   html.lenis-smooth が付いたら scroll-behavior: auto を強制する。 */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* === Phase 3.A: Hero Video === */
/* Phase 3.E: 動画化は取りやめ（枝珊瑚は静止画で残す）。
   将来動画演出を復活させる際に流用できるよう、ブロックごとコメントアウト保存。
   関連動画ファイル: assets/hero/coral-staghorn.{webm,mp4} は残置済み。 */
/*
.hero__slide video,
video.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04) saturate(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide video,
  video.hero__slide {
    animation-play-state: paused !important;
  }
}
*/

/* === Phase 3.A: Custom Cursor C1 === */
/* hover デバイスのみ表示。モバイル/タッチでは @media (hover: none) で完全非表示 */

@media (hover: hover) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    margin-left: -6px; margin-top: -6px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition:
      width 200ms ease,
      height 200ms ease,
      background 200ms ease,
      margin 200ms ease,
      border 200ms ease;
    mix-blend-mode: difference;
    will-change: transform;
  }

  .cursor--link {
    width: 10px; height: 10px;
    margin-left: -5px; margin-top: -5px;
    background: var(--accent);
  }
  .cursor--link::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cursorLinkRipple 1.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
  }
  @keyframes cursorLinkRipple {
    0%   { width: 10px; height: 10px; opacity: 1; }
    100% { width: 60px; height: 60px; opacity: 0; }
  }

  .cursor--image {
    width: 48px; height: 48px;
    margin-left: -24px; margin-top: -24px;
    background: rgba(10, 26, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    mix-blend-mode: normal;
  }

  .cursor--view {
    width: 88px; height: 88px;
    margin-left: -44px; margin-top: -44px;
    background: rgba(10, 26, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--serif-en);
    letter-spacing: 0.24em;
    font-size: 10px;
    text-transform: uppercase;
    mix-blend-mode: normal;
  }

  .cursor__label { display: block; }
}

@media (hover: none) {
  .cursor { display: none !important; }
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor { transition: none; }
}

/* === Phase 3.B: Suites Aman-style Fullscreen === */

.suites-fs-wrap { background: var(--bg); }

.suites-fs__intro {
  padding-block: clamp(80px, 12vh, 160px);
}

.suite-fs {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  /* Phase 3.G: min-height: 100vh を撤回。自然高さ + 適切な余白でスクロール量を抑える。 */
  padding-block: clamp(60px, 8vh, 100px);
  align-items: stretch;
  position: relative;
}

.suite-fs--rev { grid-template-columns: 1fr 1.5fr; }
.suite-fs--rev .suite-fs__media { order: 2; }
.suite-fs--rev .suite-fs__text  { order: 1; }

.suite-fs__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.suite-fs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.suite-fs__cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suite-fs__text {
  /* Phase 3.G: padding を clamp(48px,8vw,96px) → clamp(40px,6vw,80px) に縮小（コンパクト化） */
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.suite-fs__num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  color: var(--rule);
  margin: 0 0 24px;
}

.suite-fs__title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.suite-fs__title em {
  display: block;
  font-style: normal;
  font-family: var(--serif-en);
  font-size: 0.5em;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 12px;
  text-transform: uppercase;
}

.suite-fs__body {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.suite-fs__verse {
  margin: 16px 0 32px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}

.suite-fs__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px 24px;
  margin: 16px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.suite-fs__specs > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.suite-fs__specs b {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: none;
}

.suite-fs__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}
.suite-fs__price b {
  font-family: var(--serif-en);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.suite-fs__price span {
  font-family: var(--sans-jp);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .suite-fs,
  .suite-fs--rev {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .suite-fs--rev .suite-fs__media { order: 1; }
  .suite-fs--rev .suite-fs__text  { order: 2; }
  .suite-fs__media { min-height: 50vh; }
  .suite-fs__text { padding: 56px 24px; }
  .suite-fs__num { font-size: clamp(48px, 14vw, 80px); }
}

/* === Phase 3.C: Activities Horizontal Deck === */
/* 既存 .activities__grid / .act / .act--lg / .act--md / .act--sm は
   ロールバック容易性のため上記に残置。本ブロックは新レイアウト .activities__deck 用。 */
/* Phase 3.F: 横スクロールデッキは Aman 型フルスクリーンに置換。以下ブロック全体を
   コメントアウト残置（ロールバック用）。新レイアウトは末尾 Phase 3.F ブロックの
   .activity-fs を参照。 */

/*
.activities { background: var(--bg); }

.activities__deck-wrap {
  position: relative;
  /* Phase 3.D.1: 1枚目を画面左端 (wrap の padding 内側) ピッタリに揃えるため左マージンを 0 に。
     右側は「続きがある」感を出すため画面端まで広げる維持。 */
  margin-left: 0;
  margin-right: calc(var(--gutter) * -1);
  margin-top: 56px;
}
.activities__deck-wrap::before,
.activities__deck-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 24px;
  width: var(--gutter);
  pointer-events: none;
  z-index: 3;
}
/* Phase 3.D.1: 左フェードは 1 枚目を完全表示するため無効化（右側 ::after は維持） */
.activities__deck-wrap::before {
  display: none;
}
.activities__deck-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(242,236,224,0) 100%);
}

.activities__deck {
  padding-block: 0 24px;
  /* Phase 3.D.1: 左 padding を 0 にして 1 枚目を左端揃え。右側は続きフェード演出のため gutter を残す。 */
  padding-left: 0;
  padding-right: var(--gutter);
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}
.activities__deck::-webkit-scrollbar { height: 6px; }
.activities__deck::-webkit-scrollbar-track { background: transparent; }
.activities__deck::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }

.act-card {
  flex: 0 0 auto;
  width: clamp(320px, 28vw, 420px);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: pointer;
  transition: transform 600ms ease;
}

.act-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease;
}
.act-card:hover img { transform: scale(1.05); }

.act-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
}

.act-card .act__season {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 26, 40, 0.5);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
}

.act-card__body {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.act-card__body .act__no {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.act-card__body .act__title {
  font-family: var(--serif-jp);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 8px;
}
.act-card__body .act__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* モバイルフォールバック：縦グリッド */
@media (max-width: 880px) {
  .activities__deck-wrap {
    margin-left: 0;
    margin-right: 0;
  }
  .activities__deck-wrap::before,
  .activities__deck-wrap::after { display: none; }
  .activities__deck {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    padding-left: 0;
    padding-right: 0;
    gap: 18px;
    padding-bottom: 0;
  }
  .act-card {
    width: 100%;
    min-height: 380px;
  }
}
*/

/* === Phase 4: Copy Polish === */
/* BleedSecondary — テキストのみ引用ブロック */
.bleed--secondary {
  background: var(--ink);
  color: var(--bg);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.bleed--secondary .bleed__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.bleed__quote--text {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--bg);
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.bleed__quote--text.in {
  opacity: 1;
  transform: translateY(0);
}
.bleed--secondary .bleed__sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.08em;
  color: rgba(242, 236, 224, 0.65);
}

/* Reserve Future Tense */
.reserve__future {
  margin-top: 48px;
  opacity: 0.55;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

@media (max-width: 880px) {
  .bleed--secondary {
    min-height: 40vh;
    padding: 64px 24px;
  }
  .reserve__future {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-top: 32px;
  }
}

/* === Phase 5.1: Easter Egg Modal === */
/* C5: ロゴ 5 連打で開く「制作プロセスモーダル」 */

.egg-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 26, 40, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 60px);
  animation: eggFadeIn 360ms ease;
}

@keyframes eggFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.egg-modal {
  background: var(--bg);
  color: var(--ink);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  animation: eggSlideUp 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes eggSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.egg-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 200ms;
  line-height: 1;
}
.egg-modal__close:hover { opacity: 0.5; }

.egg-modal__eyebrow {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.egg-modal__title {
  font-family: var(--serif-jp);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.egg-modal__title em {
  display: block;
  margin-top: 8px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.55em;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.egg-modal__body {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.egg-modal__body em {
  font-style: italic;
  font-family: var(--serif-en);
}

.egg-modal__footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.egg-modal__footer em {
  font-style: italic;
}

/* nav__brand: clickable cursor for easter egg discovery */
.nav__brand {
  cursor: pointer;
  user-select: none;
}

@media (max-width: 600px) {
  .egg-overlay { padding: 20px; }
  .egg-modal { padding: 32px 24px; }
  .egg-modal__footer { flex-direction: column; gap: 8px; }
}

/* === Phase 3.F: Activities & Dining Fullscreen + Stories Video === */
/* Suites Aman 型と同じパターンを Activities と Dining に流用。
   旧 .activities__deck（横スクロール）と旧 .dining__grid（3列カード）は
   上記でコメントアウト残置（ロールバック用）。 */

/* ── 共通: wrap & intro ───────────────────────────────────────────────── */
.activities-fs-wrap,
.dining-fs-wrap {
  background: var(--bg);
}

.activities-fs__intro,
.dining-fs__intro {
  padding-block: clamp(80px, 12vh, 160px);
}

/* ── Activities Fullscreen ───────────────────────────────────────────── */
.activity-fs {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  /* Phase 3.G: min-height: 100vh を撤回。自然高さ + 適切な余白でスクロール量を抑える。 */
  padding-block: clamp(60px, 8vh, 100px);
  align-items: stretch;
  position: relative;
}
.activity-fs--rev { grid-template-columns: 1fr 1.5fr; }
.activity-fs--rev .activity-fs__media { order: 2; }
.activity-fs--rev .activity-fs__text  { order: 1; }

.activity-fs__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.activity-fs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.activity-fs__season {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(11, 42, 58, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.activity-fs__cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-fs__text {
  /* Phase 3.G: padding を clamp(48px,8vw,96px) → clamp(40px,6vw,80px) に縮小（コンパクト化） */
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.activity-fs__num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  color: var(--rule);
  margin: 0 0 24px;
}

.activity-fs__title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.activity-fs__title em {
  display: block;
  font-style: normal;
  font-family: var(--serif-en);
  font-size: 0.5em;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 12px;
  text-transform: uppercase;
}

.activity-fs__period {
  margin: 16px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ── Dining Fullscreen ───────────────────────────────────────────────── */
.dining-fs {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  /* Phase 3.G: min-height: 100vh を撤回。自然高さ + 適切な余白でスクロール量を抑える。 */
  padding-block: clamp(60px, 8vh, 100px);
  align-items: stretch;
  position: relative;
}
.dining-fs--rev { grid-template-columns: 1fr 1.5fr; }
.dining-fs--rev .dining-fs__media { order: 2; }
.dining-fs--rev .dining-fs__text  { order: 1; }

.dining-fs__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.dining-fs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.dining-fs__cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dining-fs__text {
  /* Phase 3.G: padding を clamp(48px,8vw,96px) → clamp(40px,6vw,80px) に縮小（コンパクト化） */
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.dining-fs__num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  color: var(--rule);
  margin: 0 0 24px;
}

.dining-fs__title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.dining-fs__title em {
  display: block;
  font-style: normal;
  font-family: var(--serif-en);
  font-size: 0.5em;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 12px;
  text-transform: uppercase;
}

.dining-fs__body {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.dining-fs__type {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.dining-fs__type > span:first-child {
  color: var(--accent);
  font-style: italic;
}

/* ── Mobile (max-width: 880px) ───────────────────────────────────────── */
@media (max-width: 880px) {
  .activity-fs,
  .activity-fs--rev,
  .dining-fs,
  .dining-fs--rev {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .activity-fs--rev .activity-fs__media,
  .dining-fs--rev .dining-fs__media { order: 1; }
  .activity-fs--rev .activity-fs__text,
  .dining-fs--rev .dining-fs__text { order: 2; }
  .activity-fs__media,
  .dining-fs__media { min-height: 50vh; }
  .activity-fs__text,
  .dining-fs__text { padding: 56px 24px; }
  .activity-fs__num,
  .dining-fs__num { font-size: clamp(48px, 14vw, 80px); }
}

/* ── Stories No.01 video background ──────────────────────────────────── */
/* Phase 3.G: Phase 3.F の動画背景は撤回。以下ブロックはコメントアウトで残置（ロールバック用）。
@media (prefers-reduced-motion: reduce) {
  .story__media .story__video {
    display: none;
  }
}
*/

/* ═══════════════════════════════════════════════════════════════════════
   === Phase 3.H: Final integrated polish ===
   1) Activities グリッド復活（Aman 型撤回・コンパクトカードへ）
   2) Dining 横並び 3 カード復活
   3) Suites Aman 型テキスト圧縮（1画面に収まるように）
   4) Hero テキスト下半分配置 & 暗オーバーレイ
   5) 写真 vibrancy（saturate / brightness）
   6) スクロールアニメ修復（cubic-bezier・will-change）
   ═══════════════════════════════════════════════════════════════════════ */

/* === Phase 3.H-1: Activities Grid === */
/* Phase 3.U: Four Seasons 風カルーセルに置換のためコメントアウト（ロールバック容易性のため残置） */
/*
.activities-grid {
  background: var(--bg);
  padding-block: clamp(80px, 12vh, 140px);
}

.activities-grid__deck {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.act-card-v2 {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}
.act-card-v2:nth-child(5) { grid-column: span 2; aspect-ratio: 16/10; }
.act-card-v2:nth-child(6) { grid-column: span 1; aspect-ratio: 3/4; }
.act-card-v2:nth-child(7) { grid-column: span 1; aspect-ratio: 3/4; }

.act-card-v2__media { position: absolute; inset: 0; }
.act-card-v2__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
  filter: saturate(1.15) brightness(1.05);
}
.act-card-v2:hover .act-card-v2__media img { transform: scale(1.05); }
.act-card-v2__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.82) 100%);
}
.act-card-v2__season {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(10, 26, 40, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.act-card-v2__body {
  position: absolute;
  z-index: 2;
  left: 20px; right: 20px; bottom: 18px;
}
.act-card-v2__no {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.act-card-v2__title {
  font-family: var(--serif-jp);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 6px;
}
.act-card-v2__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .activities-grid__deck { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .act-card-v2,
  .act-card-v2:nth-child(5),
  .act-card-v2:nth-child(6),
  .act-card-v2:nth-child(7) { aspect-ratio: 3/4; grid-column: span 1; }
}
@media (max-width: 480px) {
  .activities-grid__deck { grid-template-columns: 1fr; }
}
*/

/* === Phase 3.H-2: Dining Grid === */
.dining-grid {
  background: var(--ink);
  color: var(--bg);
  padding-block: clamp(80px, 12vh, 140px);
}
.dining-grid .h-section { color: var(--bg); }
.dining-grid .eyebrow { color: var(--bg); opacity: 0.6; }
.dining-grid .h-en { color: rgba(242,236,224,0.6); }

.dining-grid__deck {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dine-card-v2 {
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}
.dine-card-v2__media {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dine-card-v2__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
  filter: saturate(1.15) brightness(1.05);
}
.dine-card-v2:hover .dine-card-v2__media img { transform: scale(1.04); }
.dine-card-v2__body { padding: 28px 24px 32px; }
.dine-card-v2__type {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.55);
  margin-bottom: 14px;
}
.dine-card-v2__name {
  font-family: var(--serif-jp);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--bg);
}
.dine-card-v2__desc {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(242,236,224,0.78);
  margin: 0 0 22px;
}
.dine-card-v2__meta {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(242,236,224,0.18);
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(242,236,224,0.65);
}

@media (max-width: 880px) {
  .dining-grid__deck { grid-template-columns: 1fr; gap: 24px; }
}

/* === Phase 3.H-3: Suite compact (1画面に収まるよう全要素を圧縮) === */
.suite-fs__num {
  font-size: clamp(48px, 5.5vw, 80px) !important;
  margin: 0 0 18px !important;
}
.suite-fs__title {
  font-size: clamp(24px, 2.8vw, 36px) !important;
  margin: 0 0 12px !important;
}
.suite-fs__body {
  font-size: clamp(14px, 1.1vw, 15.5px) !important;
  line-height: 1.85 !important;
  margin: 0 0 6px !important;
}
.suite-fs__verse {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  margin: 12px 0 22px !important;
  padding-left: 14px !important;
}
.suite-fs__specs {
  gap: 10px 18px !important;
  margin: 12px 0 18px !important;
  padding-top: 18px !important;
}
.suite-fs__specs > div { font-size: 10px !important; }
.suite-fs__specs b { font-size: 14px !important; }
.suite-fs__price b { font-size: clamp(18px, 1.9vw, 24px) !important; }
.suite-fs__text { padding: clamp(32px, 5vw, 64px) !important; }

/* === Phase 3.H-4: Hero text repositioning & dark overlay ===
   写真のインパクトを取り戻すため、テキスト群を画面下半分へ寄せ、
   暗いグラデーション・オーバーレイで読みやすさを補強する。
   .hero__inner は grid 構成（auto 1fr auto）を維持しつつ
   .hero__center を align-self: end で下端寄りに配置。 */
/* Phase 3.H 版（ロールバック用に残置・Phase 3.J で弱化版に差し替え）
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,0.45) 80%,
    rgba(0,0,0,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
*/
/* Hero 子要素を新オーバーレイより前面に */
.hero__inner,
.hero__top,
.hero__center,
.hero__foot,
.hero__overline,
.hero__title,
.hero__title-em,
.hero__sub,
.hero__scroll {
  position: relative;
  z-index: 3;
}
/* Center 群を下半分へ寄せる（テキスト左寄せ & コンパクト化） */
.hero__center {
  align-self: end !important;
  text-align: left !important;
  max-width: 900px !important;
  margin: 0 auto 0 0 !important;
  padding-bottom: clamp(40px, 6vh, 80px);
}
.hero__overline {
  text-align: left !important;
  margin-bottom: 20px !important;
}
.hero__title {
  font-size: clamp(40px, 6vw, 80px) !important;
  text-align: left !important;
  margin: 0 0 18px !important;
}
.hero__sub {
  text-align: left !important;
}

/* === Phase 3.H-5: Image vibrancy ===
   全画像を一段彩度＋明度アップ。Hero 既存 filter とも整合させる（上書き）。 */
/* Phase 3.H 版（ロールバック用に残置・Phase 3.J で強化版に差し替え）
.hero__media img {
  filter: saturate(1.2) brightness(1.05) contrast(1.04) !important;
}
.story__media img,
.suite-fs__media img,
.bleed__media img {
  filter: saturate(1.15) brightness(1.05);
}
*/
/* .act-card-v2__media img と .dine-card-v2__media img は上記で個別指定済み */

/* === Phase 3.H-6: Reveal animation revival ===
   既存 .reveal / .reveal-trigger を !important で確実に上書き。
   transform 開始量を 24px に統一、cubic-bezier(.16,1,.3,1) で滑らかに。 */
.reveal,
.reveal-trigger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}
.reveal.in,
.reveal-trigger.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* === Phase 3.I: Hero meta fade on scroll ===
   COORDINATES / NOW VIEWING / EST. MMXXVI などの Hero メタ情報が
   スクロール後に nav と重なって読みにくい問題を解消。
   body.hero-meta-hidden が付いたら .hero__top / .hero__foot を fade out。
   切替トリガーは app.jsx の scroll listener（window.innerHeight * 0.4）。 */
.hero__top,
.hero__foot {
  transition: opacity 500ms ease;
}
body.hero-meta-hidden .hero__top,
body.hero-meta-hidden .hero__foot {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   === Phase 3.J: Hero brightness & vibrancy upgrade ===
   ユーザー指摘：Hero 写真の解像度と明度が低く映えていない。
   1) 暗オーバーレイを弱める（35%→55% 開始位置, 0.65→0.42 max）
   2) Hero filter 強化（saturate 1.28 / brightness 1.12 / contrast 1.08）
   3) その他写真にも軽い filter 補正
   PM 側で元画像も明度+8% / 彩度+15% / コントラスト+5% 補正済み。
   CSS フィルターは「最終仕上げ」程度に。
   ═══════════════════════════════════════════════════════════════════════ */

/* === Phase 3.J-1: Hero overlay softened === */
/* Phase 3.T: 明るい写真でも左下テキスト可読性確保のため、左下に局所オーバーレイ追加 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* 左下のラジアル暗オーバーレイ（テキスト可読性確保） */
    radial-gradient(ellipse 60% 50% at 25% 75%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0) 80%),
    /* 全体下端のグラデーション（既存） */
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.20) 80%,
      rgba(0,0,0,0.48) 100%);
  z-index: 2;
  pointer-events: none;
}

/* === Phase 3.T: Hero テキストに text-shadow で可読性確保 === */
.hero__overline,
.hero__title,
.hero__title-em,
.hero__sub {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.45);
}

/* === Phase 3.J-2: Image vibrancy enhancement === */
.hero__media img {
  filter: saturate(1.28) brightness(1.12) contrast(1.08) !important;
}
.story__media img,
.suite-fs__media img,
.bleed__media img {
  filter: saturate(1.18) brightness(1.08) contrast(1.05) !important;
}
.dine-card-v2__media img {
  filter: saturate(1.2) brightness(1.08) contrast(1.06) !important;
}
/* Phase 3.U: .act-card-v2 はカルーセル化で無効。代わりに .act-carousel-card__media img を強化 */
.act-carousel-card__media img {
  filter: saturate(1.2) brightness(1.08) contrast(1.06) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.O — 高級感ある「指差し」廃止 + リンクhover上品化
   2026-05-24 / 仕掛け人: PM (Claude)
   ─────────────────────────────────────────────────────────────────────
   ユーザー指摘：マウスポインタが指差しになってしまい高級感を損なう。
   1) cursor: none を全要素・hover/focus状態・擬似要素まで強制
   2) リンクhoverで OS pointer を完全に消す
   3) nav リンクに下線スライドイン演出（左→右）
   4) 一般リンクは hover 時 opacity 微変化
   ═══════════════════════════════════════════════════════════════════════ */

@media (hover: hover) {
  /* Phase 3.Q: CSS url() で SVG カスタムカーソルを直接適用 (JS非依存・確実) */
  html,
  body,
  body *,
  body *::before,
  body *::after {
    cursor: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='%230a1a28'/%3E%3C/svg%3E") 12 12, default !important;
  }
  /* リンク・ボタン hover 時：円が大きくなり中央に小ドット (上品なリング型カーソル) */
  a,
  a:link,
  a:visited,
  a:hover,
  a:focus,
  a:active,
  button,
  button:hover,
  button:focus,
  button:active,
  [role="button"],
  [role="link"],
  [onclick],
  .nav__brand,
  .nav__cta,
  .nav__links a,
  .reserve__cta,
  .btn-line,
  .floating-cta,
  .egg-modal__close,
  details summary {
    cursor: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='14' fill='none' stroke='%231a4a6a' stroke-width='1.2' opacity='0.85'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%231a4a6a'/%3E%3C/svg%3E") 20 20, pointer !important;
  }
  /* テキスト入力系は I-beam を SVG で */
  input[type="text"],
  input[type="email"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  textarea {
    cursor: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect x='11' y='3' width='2' height='18' fill='%230a1a28'/%3E%3C/svg%3E") 12 12, text !important;
  }

  /* === Nav リンクの下線スライドイン === */
  .nav__links a {
    position: relative;
    transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
    transition: right 420ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }
  .nav__links a:hover::after {
    right: 0;
  }

  /* === 一般リンク hover で控えめな opacity 変化 === */
  body.has-custom-cursor a:not(.nav__brand):not(.nav__cta):not(.reserve__cta):not(.btn-line):not(.floating-cta) {
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* === ボタン系 CTA に微妙な hover scale + shadow === */
  .nav__cta,
  .reserve__cta,
  .btn-line,
  .floating-cta {
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
                background 360ms ease,
                color 360ms ease,
                border-color 360ms ease;
  }
  .nav__cta:hover,
  .reserve__cta:hover,
  .btn-line:hover,
  .floating-cta:hover {
    transform: translateY(-1px);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.U — Activities Four Seasons-style Carousel
   2026-05-24 / 仕掛け人: PM (Claude)
   ─────────────────────────────────────────────────────────────────────
   Four Seasons Maui の Suites カルーセル UI を参照：
   - 横一列に7枚のカード、中央が一回り大きく active
   - 左右の予告カードは scale(0.86) + opacity(0.5)
   - 矢印クリック / カードクリック / ←→キーで遷移
   - cubic-bezier(0.16, 1, 0.3, 1) で 720ms スライド
   ═══════════════════════════════════════════════════════════════════════ */

.activities-carousel {
  background: var(--bg);
  padding-block: clamp(80px, 12vh, 140px);
  overflow: hidden;
}

.activities-carousel__viewport {
  margin-top: 56px;
  position: relative;
  overflow: visible;
  height: 580px; /* アクティブカード高さに合わせる */
}

.activities-carousel__track {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Phase 3.W: left:50% でviewport中央起点に。inline transformで translate(-Npx, -50%) する */
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.act-carousel-card {
  flex: 0 0 320px;
  height: 460px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transform: scale(0.86);
  opacity: 0.5;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 500ms ease,
    flex-basis 720ms cubic-bezier(0.16, 1, 0.3, 1),
    height 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 500ms ease;
  user-select: none;
  -webkit-user-select: none;
}

.act-carousel-card.is-active {
  flex: 0 0 440px;
  height: 560px;
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 20px 60px rgba(10, 26, 40, 0.25);
}

.act-carousel-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.act-carousel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(1.05);
  transition: transform 1.6s ease;
}

.act-carousel-card.is-active .act-carousel-card__media img {
  transform: scale(1.04);
}

.act-carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.act-carousel-card__season {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(10, 26, 40, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.act-carousel-card__body {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 22px;
}

.act-carousel-card__no {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.act-carousel-card__title {
  font-family: var(--serif-jp);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 6px;
  transition: font-size 720ms cubic-bezier(0.16, 1, 0.3, 1);
}
.act-carousel-card.is-active .act-carousel-card__title { font-size: 26px; }

.act-carousel-card__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}
.act-carousel-card.is-active .act-carousel-card__en { font-size: 14px; }

.activities-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
}

.activities-carousel__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--serif-en);
  font-size: 18px;
  color: var(--ink);
  transition: background 280ms ease, color 280ms ease;
}
.activities-carousel__arrow:hover {
  background: var(--ink);
  color: var(--bg);
}

.activities-carousel__pagination {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.activities-carousel__pagination b {
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  font-style: italic;
}

/* モバイル：縦並びにフォールバック */
@media (max-width: 880px) {
  .activities-carousel { overflow: visible; }
  .activities-carousel__viewport {
    height: auto;
    overflow: visible;
  }
  .activities-carousel__track {
    position: static;
    transform: none !important;
    flex-direction: column;
    gap: 14px;
    transition: none;
  }
  .act-carousel-card,
  .act-carousel-card.is-active {
    flex: 0 0 auto;
    width: 100%;
    height: 380px;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none;
  }
  .act-carousel-card__title,
  .act-carousel-card.is-active .act-carousel-card__title { font-size: 20px; }
  .act-carousel-card__en,
  .act-carousel-card.is-active .act-carousel-card__en { font-size: 13px; }
  .activities-carousel__controls { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.V — Activities Carousel loop + lighter background
   2026-05-24 / 仕掛け人: PM (Claude)
   ─────────────────────────────────────────────────────────────────────
   1) 両端に複製カードを追加して常に左右に予告カードが見える循環ループ化
      （ロジックは sections.jsx 側で renderList と offsetX を変更）
   2) Activities セクション背景を #fdfcf8（Hero テキスト白に近い off-white）へ
      Phase 3.U の var(--bg) からの上書き
   ═══════════════════════════════════════════════════════════════════════ */

.activities-carousel {
  background: #fdfcf8 !important;
}

/* === Phase 3.W: hero__title-em の色を hero__title と完全統一（純白） === */
/* 旧グラデーション (60%以降が opacity 0.78) を撤回し、純白に固定 */
.hero__title-em {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.X — レスポンシブ対応強化 + ハンバーガーメニュー
   2026-05-25 / 仕掛け人: PM (Claude)
   ─────────────────────────────────────────────────────────────────────
   1) ハンバーガーボタン + モバイル全画面メニュー（880px以下で発動）
   2) Hero / Footer / Bleed / Activities / Suites / Dining / Reserve / FAQ
      の各セクションでフォントサイズ・余白をモバイル最適化
   ═══════════════════════════════════════════════════════════════════════ */

/* === ハンバーガーボタン === */
.nav__hamburger {
  display: none;  /* デフォルト非表示・モバイル時のみ表示 */
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 12000;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 240ms ease, background 240ms ease;
  transform-origin: center;
}
/* Hero 上では白線（nav が透過のとき） */
.nav:not(.nav--solid) .nav__hamburger span {
  background: var(--bg);
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
/* メニュー開時は背景が bg になるので強制 ink */
.nav.nav--menu-open .nav__hamburger span {
  background: var(--ink);
}

/* === モバイル全画面メニュー === */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  padding: 24px;
}

.mobile-menu__nav a {
  font-family: var(--serif-jp);
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 280ms ease;
}
.mobile-menu__nav a:hover { opacity: 0.6; }

.mobile-menu__cta {
  margin-top: 8px;
  font-family: var(--serif-en) !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase;
  font-size: clamp(14px, 3.5vw, 18px) !important;
  padding: 14px 32px !important;
  border: 1px solid var(--ink);
  display: inline-block;
}

.mobile-menu__footer {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* === 880px 以下：ハンバーガー表示・既存 nav__links / CTA 非表示 === */
@media (max-width: 880px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none !important; }
  .nav__cta { display: none !important; }
  .nav { padding: 18px 24px !important; }
}

/* === デスクトップ時はモバイルメニュー非表示 === */
@media (min-width: 881px) {
  .mobile-menu { display: none !important; }
}

/* === Hero モバイル微調整 === */
@media (max-width: 880px) {
  .hero__title { font-size: clamp(32px, 9vw, 56px) !important; }
  .hero__overline { font-size: clamp(11px, 3vw, 14px) !important; letter-spacing: 0.32em !important; }
  .hero__sub { font-size: clamp(13px, 3.5vw, 16px) !important; }
  .hero__top, .hero__foot { padding: 12px 24px !important; font-size: 10px !important; }
}

/* === Footer モバイル: 4列 → 2列 → 1列 === */
@media (max-width: 880px) {
  .foot { grid-template-columns: 1fr 1fr !important; gap: 32px !important; padding: 56px 24px !important; }
}
@media (max-width: 540px) {
  .foot { grid-template-columns: 1fr !important; }
}

/* === Bleed セクション モバイル === */
@media (max-width: 880px) {
  .bleed__quote { font-size: clamp(28px, 7vw, 44px) !important; padding: 0 24px !important; }
  .bleed__sub { font-size: 11px !important; padding: 0 24px !important; }
}

/* === Activities カルーセル モバイル：縦並び確実化（既存 880px ブロックを補強） === */
@media (max-width: 880px) {
  .activities-carousel__viewport {
    height: auto !important;
  }
  .activities-carousel__controls { display: none !important; }
  .activities-carousel__track {
    position: static !important;
    transform: none !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 24px !important;
  }
  .act-carousel-card,
  .act-carousel-card.is-active {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 400px !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
  }
}

/* === Suites Aman型 モバイル === */
@media (max-width: 880px) {
  .suite-fs__title { font-size: clamp(24px, 6vw, 32px) !important; }
  .suite-fs__body { font-size: clamp(13px, 3.5vw, 15px) !important; }
}

/* === Dining 3カード モバイル：縦並び === */
@media (max-width: 880px) {
  .dining-grid__deck { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* === BleedSecondary モバイル === */
@media (max-width: 880px) {
  .bleed--secondary .bleed__quote--text { font-size: clamp(22px, 6vw, 38px) !important; padding: 0 24px !important; }
}

/* === Reserve モバイル === */
@media (max-width: 880px) {
  .reserve { padding: 80px 24px !important; }
}

/* === FAQ モバイル === */
@media (max-width: 880px) {
  .faq__list { padding: 0 24px !important; }
  .faq__q { font-size: clamp(15px, 4vw, 17px) !important; }
  .faq__a { font-size: clamp(13px, 3.5vw, 15px) !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.Y — Hero モバイル詳細調整（スクロール/フッターメタの中央寄せ）
   2026-05-26 / 仕掛け人: PM (Claude)
   ─────────────────────────────────────────────────────────────────────
   問題:
   1) — EST. MMXXVI · CHICHIJIMA · OGASAWARA — が画面幅を超えて右端切れ
   2) 03/04 プログレスバー・SCROLL文字が右寄り
   3) COORDINATES / NOW VIEWING の左右grid が画面外
   解決: モバイル時は中央寄せ・改行可・letter-spacing 圧縮
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 880px) {
  /* === 上部メタ「EST. MMXXVI · CHICHIJIMA · OGASAWARA」 === */
  .hero__top {
    text-align: center !important;
    justify-content: center !important;
    padding: 16px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-height: 1.6 !important;
  }
  .hero__top > * {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  /* === 下部 grid を縦並びに・全要素中央寄せ === */
  .hero__foot {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 24px 16px !important;
    text-align: center !important;
  }
  .hero__foot-l,
  .hero__foot-r,
  .hero__foot-c {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  /* SCROLL・03/04・プログレスバーを中央配置に */
  .hero__foot-c { order: -1 !important; }
  .hero__counter {
    justify-content: center !important;
  }
  .hero__scroll {
    margin: 0 auto !important;
    text-align: center !important;
  }
  .hero__scroll::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  /* COORDINATES / NOW VIEWING ラベルとデータを中央 */
  .hero__foot-l, .hero__foot-r {
    gap: 4px !important;
  }
  .hero__foot-lbl,
  .hero__foot-val {
    text-align: center !important;
  }
  .hero__foot small {
    text-align: center !important;
    font-size: 10px !important;
  }
}

/* === 480px以下：上部メタを2行に折り返し許可 + フォントさらに小さく === */
@media (max-width: 480px) {
  .hero__top {
    font-size: 8.5px !important;
    letter-spacing: 0.14em !important;
  }
  .hero__foot {
    padding: 20px 12px !important;
    gap: 16px !important;
  }
  .hero__foot small {
    font-size: 9.5px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 3.Z — Stories 即時表示（reveal animation 省略）
   2026-06-03 / 仕掛け人: PM (Claude) → developer-node
   ─────────────────────────────────────────────────────────────────────
   背景: Stories 3 セクションの画像（ボニンブルー / クジラ / 星のためだけの夜）が
         スクロール到達後の clip-path 遷移（1500ms）+ lazy load の二重待ちで
         「キャプションが見えてから画像が現れる」遅延に感じられていた。

   対応:
     1. sections.jsx 側で reveal-img クラスを外し、loading=eager + fetchpriority=high に変更
     2. index.html で Stories 上位2枚（自前 webp）を <link rel=preload>
     3. このブロックで .story__media img を opacity:1 / clip-path:inset(0) で固定（保険）

   既存 .reveal-img 定義（1219〜1224行）は他用途のためそのまま残す。
   ═══════════════════════════════════════════════════════════════════════ */

/* Stories 配下の画像はクリップパス遷移なし・即時表示 */
.story__media img,
.story__media .story__img,
.story__media .reveal-img {
  clip-path: none !important;
  opacity: 1 !important;
  transition: none !important;
}

/* 親 .story__media にもアニメ系の opacity 待機が無いことを担保（保険） */
.story__media {
  opacity: 1 !important;
}
