:root {
  --page-max: 1080px;
  --content-max: 760px;
  --base: #f8f3ea;
  --base-2: #efe4d6;
  --card: #fffcf7;
  --rose: #d8b7aa;
  --pink: #e7c9c2;
  --brown: #3f332d;
  --muted: #8a7568;
  --gold: #b89b6a;
  --shadow: 0 24px 70px rgba(63, 51, 45, .13);
  --soft-shadow: 0 14px 40px rgba(63, 51, 45, .09);
  --radius: 28px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background:
    radial-gradient(circle at 12% 8%, rgba(231, 201, 194, .35), transparent 26rem),
    radial-gradient(circle at 88% 24%, rgba(184, 155, 106, .16), transparent 23rem),
    linear-gradient(180deg, var(--base) 0%, #fffaf4 48%, var(--base-2) 100%);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.85;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset-block: 0;
  width: max(0px, calc((100vw - var(--page-max)) / 2));
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, .48), rgba(239, 228, 214, .34)),
    radial-gradient(circle at 50% 18%, rgba(216, 183, 170, .22), transparent 18rem);
}

body::before { left: 0; }
body::after { right: 0; }

.page-frame {
  position: relative;
  width: min(100%, var(--page-max));
  min-height: 100svh;
  margin: 0 auto;
  background: rgba(255, 252, 247, .38);
  box-shadow:
    0 0 0 1px rgba(184, 155, 106, .08),
    0 30px 90px rgba(63, 51, 45, .10);
}

.page-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.34), transparent 9%, transparent 91%, rgba(255,255,255,.34)),
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 30rem);
}

.page-frame > * {
  position: relative;
}


img {
  max-width: 100%;
  display: block;
  background: linear-gradient(135deg, #f5eadf, #fff8ef);
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--brown);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100%, var(--page-max));
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--brown);
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 234, .68);
  border-bottom: 1px solid rgba(184, 155, 106, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  min-height: 24px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.brand-logo-ivory { display: none; }

.mini-nav {
  display: flex;
  gap: 12px;
  font-family: ui-serif, Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 40px 18px 48px;
  overflow: hidden;
}

.ornament {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(.1px);
}

.ornament-1 {
  width: 230px;
  height: 230px;
  right: -90px;
  top: 92px;
  background: radial-gradient(circle, rgba(216,183,170,.52), transparent 70%);
}

.ornament-2 {
  width: 170px;
  height: 170px;
  left: -80px;
  bottom: 96px;
  background: radial-gradient(circle, rgba(184,155,106,.25), transparent 70%);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  width: min(100%, 560px);
  margin: 0 auto;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -18px -18px;
  z-index: -1;
  border-radius: 999px 999px 42px 42px;
  background: linear-gradient(135deg, rgba(255,252,247,.9), rgba(239,228,214,.58));
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 7px;
  border-radius: 26px;
  background: rgba(255,252,247,.82);
  box-shadow: 0 18px 46px rgba(63, 51, 45, .12);
  border: 1px solid rgba(184,155,106,.30);
  overflow: hidden;
}

.hero-card::after,
.muse-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.34) 46%, transparent 72%);
  transform: translateX(-125%);
  opacity: .7;
}

.hero-card.is-visible::after,
.muse-image-wrap.is-visible::after {
  animation: silkShine 1.35s var(--ease) .28s both;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  border-radius: 20px;
}

.hero-card-eri img { object-position: 50% 16%; }
.hero-card-mayu img { object-position: 50% 14%; }

.hero-card figcaption {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 7px 4px 3px;
  color: var(--muted);
  font-size: 6px;
  line-height: 1.35;
  letter-spacing: .06em;
  text-align: center;
}

.hero-card-eri {
  transform-origin: bottom right;
}

.hero-card-mayu {
  margin-top: 30px;
  transform-origin: bottom left;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 24px 18px 22px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,252,247,.86);
  border: 1px solid rgba(184,155,106,.20);
  box-shadow: 0 18px 54px rgba(63, 51, 45, .09);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: ui-serif, Georgia, serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(32px, 7vw, 46px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: .015em;
}

.hero-lead,
.intro-text,
.muse-copy {
  margin: 24px auto 0;
  max-width: 640px;
  font-size: 15.5px;
  color: rgba(63, 51, 45, .9);
}

/* Scroll cue center fix */
.scroll-cue {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px;
  width: 72px;
  height: 72px;
  margin: 30px auto 0 !important;
  padding: 0 !important;
  text-align: center;
  line-height: 1;
  color: #9a7446;
  background: #fffaf4;
  border: 1px solid rgba(184, 155, 106, .48);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(63, 51, 45, .08);
}

.scroll-cue::after {
  content: "▼";
  display: block;
  margin-top: -5px;
  font-size: 12px;
  line-height: 1;
  color: #9a7446;
}

.scroll-cue span {
  display: block;
  line-height: 1;
}

.section-shell {
  padding: 78px 22px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 6.8vw, 43px);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: .03em;
}

.intro {
  text-align: center;
}

.muse {
  position: relative;
  padding: 26px 0 72px;
}

.muse-image-wrap {
  position: sticky;
  top: 68px;
  width: calc(100% - 36px);
  max-width: 620px;
  margin: 0 auto -42px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184,155,106,.24);
  background: var(--card);
}

.muse-image {
  width: 100%;
  aspect-ratio: 4 / 5.05;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.02);
}

.muse-mayu .muse-image { object-position: 50% 14%; }

.floating-label {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,252,247,.72);
  color: var(--gold);
  font-family: ui-serif, Georgia, serif;
  font-size: 12px;
  letter-spacing: .12em;
  backdrop-filter: blur(12px);
}

.muse-content {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 76px;
  background: linear-gradient(180deg, rgba(255,252,247,.86), rgba(255,252,247,.72));
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -22px 60px rgba(63, 51, 45, .06);
}

.muse-name {
  margin: 0;
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(48px, 17vw, 98px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .02em;
}

.muse-lead {
  margin: 24px 0 0;
  font-size: clamp(18px, 4.7vw, 28px);
  line-height: 1.62;
}

.muse-actions {
  margin-top: 24px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(184,155,106,.34);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255,252,247,.72);
  box-shadow: 0 10px 28px rgba(63,51,45,.07);
  font-family: ui-serif, Georgia, serif;
  font-size: 13px;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.instagram-link i,
.button i {
  color: var(--gold);
  font-size: 1.08em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.chips span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184,155,106,.38);
  background: rgba(248, 243, 234, .68);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.story-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.story-card {
  overflow: hidden;
  border: 1px solid rgba(184,155,106,.26);
  border-radius: 22px;
  background: rgba(255,252,247,.92);
  box-shadow: var(--soft-shadow);
}

.story-card summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  line-height: 1.75;
}

.story-card summary::-webkit-details-marker { display: none; }

.story-card summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(184,155,106,.34);
  transition: transform .36s var(--ease), background .36s var(--ease);
}

.story-card[open] summary::after {
  transform: rotate(45deg);
  background: rgba(184,155,106,.12);
}

.story-card summary span {
  color: #9a7446;
  font-family: ui-serif, Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.story-card summary i {
  color: #9a7446;
  opacity: 1;
  font-size: 13px;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, .65));
}

.story-card p {
  margin: 0;
  padding: 0 18px 18px 48px;
  color: rgba(63, 51, 45, .88);
  font-size: 15px;
}

.story-card p + p {
  padding-top: 0;
}

.quote-band {
  position: relative;
  padding: 50px 18px;
  text-align: center;
  background: linear-gradient(90deg, rgba(216,183,170,.2), rgba(184,155,106,.12), rgba(216,183,170,.2));
  overflow: hidden;
}

/* Quote band text adjustment - more delicate */
.quote-band p {
  font-size: clamp(18px, 5vw, 32px) !important;
  font-weight: 200 !important;
  line-height: 1.28 !important;
  letter-spacing: .04em !important;
  color: rgba(63, 51, 45, .52) !important;
}

.scene-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 66px 18px;
  background: rgba(255,252,247,.45);
}

.scene-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,252,247,.75);
  border: 1px solid rgba(184,155,106,.22);
  box-shadow: var(--soft-shadow);
}

.scene-card span {
  color: var(--gold);
  font-family: ui-serif, Georgia, serif;
  letter-spacing: .12em;
}

.scene-card p {
  margin: 8px 0 0;
  font-size: 15px;
}

.closing {
  text-align: center;
  padding-bottom: 96px;
}

.cta-group {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .06em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.button.primary {
  color: #4a382f;
  background:
    linear-gradient(135deg,
      rgba(255, 252, 247, .96) 0%,
      rgba(239, 225, 205, .92) 45%,
      rgba(232, 205, 191, .90) 100%);
  border: 1px solid rgba(184, 155, 106, .42);
  box-shadow: 0 16px 34px rgba(63, 51, 45, .10);
}

.button.primary i {
  color: #b89b6a;
}

.button.ghost {
  color: var(--brown);
  border: 1px solid rgba(184,155,106,.46);
  background: rgba(255,252,247,.66);
}

.button:active {
  transform: translateY(1px) scale(.99);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
  transition-delay: var(--delay, 0s);
  filter: blur(4px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.tap-sparkle {
  position: fixed;
  width: 9px;
  height: 9px;
  left: 0;
  top: 0;
  z-index: 200;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,155,106,.35);
}

.tap-sparkle.is-active {
  animation: sparkle .56s ease-out forwards;
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); opacity: .82; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes silkShine {
  0% { transform: translateX(-125%); }
  100% { transform: translateX(125%); }
}

@keyframes sparkle {
  0% { opacity: .85; transform: translate(-50%, -50%) scale(.3); box-shadow: 0 0 0 0 rgba(184,155,106,.36); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.9); box-shadow: 0 0 0 22px rgba(184,155,106,0); }
}


@media (max-width: 390px) {
  .hero { padding-inline: 14px; gap: 20px; }
  .hero-visual { gap: 8px; }
  .hero-card { padding: 5px; border-radius: 22px; }
  .hero-card img { border-radius: 17px; }
  .hero-card figcaption { font-size: 9px; min-height: 38px; }
  .hero-copy { padding: 21px 14px 20px; }
  .mini-nav { gap: 9px; font-size: 11px; }
}

@media (min-width: 760px) {
  .site-header { padding: 16px 32px; }
  .brand { width: 142px; }
@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.25fr);
    gap: clamp(18px, 3vw, 36px);
    align-items: center;
    padding: 72px clamp(24px, 4vw, 52px) 54px;
  }
}
  .hero-visual { order: 2; width: min(100%, 600px); }
  .hero-card { padding: 9px; border-radius: 32px; }
  .hero-card img { border-radius: 24px; }
  .hero-copy { order: 1; margin: 0; padding: 32px 28px; text-align: left; }
  .scroll-cue { margin-left: 0; }
  .muse {
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(360px, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    padding-inline: clamp(24px, 4vw, 54px);
  }
  .muse-mayu .muse-image-wrap { order: 2; }
  .muse-mayu .muse-content { order: 1; }
  .muse-image-wrap { width: calc(100% - 20px); margin-bottom: 0; }
  .muse-content { margin-top: 90px; border-radius: 34px; }
  .scene-strip { grid-template-columns: repeat(3, 1fr); padding-inline: clamp(24px, 4vw, 54px); }
  .cta-group { grid-template-columns: repeat(2, minmax(0, 240px)); justify-content: center; }
}

@media (hover: hover) {
  .button:hover,
  .instagram-link:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(63,51,45,.11); }
  .story-card:hover { border-color: rgba(184,155,106,.42); }
}

@media (min-width: 1120px) {
  .page-frame { border-radius: 0 0 38px 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ===== v8 mobile-first luxury scroll experience ===== */
:root {
  --ivory: #fffaf4;
  --champagne: #f5eadc;
  --pinkgold-soft: #f3d9cf;
  --rose-glow: #efc8c0;
  --lavender-mist: #eee6f4;
}

body {
  background:
    radial-gradient(circle at 18% 6%, rgba(255,255,255,.82) 0 8rem, transparent 22rem),
    radial-gradient(circle at 86% 12%, rgba(239,200,192,.55), transparent 24rem),
    radial-gradient(circle at 16% 58%, rgba(184,155,106,.16), transparent 20rem),
    linear-gradient(180deg,
      #fff7f1 0%,
      #f7ddd4 18%,
      #f8eee4 38%,
      #f3e2d7 58%,
      #eee6f4 78%,
      #fffaf4 100%);
}

.page-frame {
  background: linear-gradient(180deg, rgba(255,252,247,.36), rgba(255,252,247,.22));
  overflow: clip;
}

.page-frame::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    radial-gradient(circle, rgba(184,155,106,.48) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(216,183,170,.34) 0 1px, transparent 2px);
  background-size: 180px 180px, 255px 255px, 320px 320px;
  background-position: 22px 72px, 128px 130px, 62px 240px;
  animation: twinkleField 8s ease-in-out infinite alternate;
}

.site-header,
.hero,
.intro,
.muse,
.quote-band,
.scene-strip,
.closing,
.tap-sparkle { position: relative; z-index: 2; }

.hero { gap: 20px; }

.hero-copy {
  text-align: left;
  background: linear-gradient(145deg, rgba(255,252,247,.91), rgba(255,255,255,.58));
}

h1 {
  font-size: clamp(32px, 7vw, 46px);
  line-height: 1.42;
  letter-spacing: .015em;
  overflow-wrap: normal;
}

.hero-card {
  border-width: .7px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,250,244,.46));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 1;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(63,51,45,.28));
}

.hero-name {
  position: absolute;
  left: 50%;
  bottom: 43px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,.74);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 15vw, 108px);
  font-style: italic;
  line-height: .9;
  letter-spacing: .03em;
  text-shadow: 0 12px 34px rgba(63,51,45,.32);
  white-space: nowrap;
  pointer-events: none;
}

.hero-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .45em;
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(90deg, rgba(63,51,45,.24), rgba(63,51,45,.08));
  backdrop-filter: blur(8px);
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: radial-gradient(circle, rgba(255,255,255,.82), rgba(255,250,244,.34));
  box-shadow: 0 18px 38px rgba(63,51,45,.08);
}

.scroll-cue i { font-size: 11px; }

.intro,
.closing { text-align: left; }

.intro-text,
.muse-copy,
.scene-card p,
.story-card p { text-align: left; }

/* The main mobile-first scroll trick: photo stays, glass profile + text rise over it */
.muse {
  --muse-progress: 0;
  padding-top: 18px;
  padding-bottom: 82px;
}

.muse-image-wrap {
  top: 64px;
  margin-bottom: -110px;
  border-width: .7px;
  transform: translate3d(0, calc(var(--lux-y, 0px) * .45), 0);
  will-change: transform;
}

.muse-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,252,247,.02) 0%, transparent 32%, rgba(63,51,45,.34) 100%),
    radial-gradient(circle at 50% 100%, rgba(184,155,106,.23), transparent 42%);
}

.muse-image {
  transform: scale(calc(1.055 - var(--muse-progress) * .045));
  transition: transform .08s linear;
  will-change: transform;
}

.floating-label {
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  border-width: .7px;
}

.muse-glass-profile {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 16px 16px 15px;
  border: .7px solid rgba(255,255,255,.72);
  border-radius: 24px;
  color: var(--brown);
  background: linear-gradient(145deg, rgba(255,252,247,.74), rgba(239,225,205,.42));
  box-shadow: 0 18px 44px rgba(63,51,45,.16);
  backdrop-filter: blur(16px) saturate(1.18);
  opacity: calc(.18 + var(--muse-progress) * .82);
  transform: translate3d(0, calc(42px - var(--muse-progress) * 52px), 0) scale(calc(.96 + var(--muse-progress) * .04));
  will-change: transform, opacity;
}

.muse-glass-profile p {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: ui-serif, Georgia, serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.muse-glass-profile strong {
  display: block;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 13vw, 76px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .02em;
}

.muse-glass-profile span,
.muse-glass-profile em {
  display: block;
  margin-top: 5px;
  color: rgba(63,51,45,.72);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}

.muse-glass-profile em {
  margin-top: 11px;
  color: var(--gold);
  font-family: ui-serif, Georgia, serif;
  letter-spacing: .04em;
}

.muse-content {
  padding-top: 128px;
  background: linear-gradient(180deg, rgba(255,252,247,.76) 0%, rgba(255,252,247,.92) 22%, rgba(255,252,247,.68) 100%);
  backdrop-filter: blur(18px);
  transform: translate3d(0, calc(28px - var(--muse-progress) * 28px), 0);
  transition: transform .08s linear;
  will-change: transform;
}

.muse-name {
  font-size: clamp(46px, 15vw, 88px);
}

.instagram-link,
.button,
.story-card,
.scene-card,
.chips span {
  background: linear-gradient(135deg, rgba(255,252,247,.86), rgba(244,221,216,.42), rgba(239,225,205,.34));
}

.instagram-link,
.button { position: relative; overflow: hidden; }

.instagram-link::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.45) 46%, transparent 72%);
  transform: translateX(-130%);
}

.instagram-link.is-visible::after,
.button.is-visible::after { animation: silkShine 1.25s var(--ease) .1s both; }

.story-card summary {
  grid-template-columns: auto auto 1fr;
}

.story-card summary > i {
  margin-top: .45em;
  color: var(--gold);
  font-size: .9em;
}

.quote-band {
  background: rgba(255,252,247,.20);
}

.quote-band p {
  width: min(100%, 920px);
  white-space: normal;
  overflow-wrap: normal;
  line-height: 1.12;
  letter-spacing: clamp(.02em, .8vw, .07em);
}

.scene-card span {
  display: inline-flex;
  align-items: center;
  gap: .48em;
}
.scene-card span::before { content: none; }
.scene-card i { color: var(--gold); }

@keyframes twinkleField {
  0% { opacity: .26; transform: translate3d(0,0,0); }
  100% { opacity: .45; transform: translate3d(0,-8px,0); }
}

@media (max-width: 390px) {
  .muse-glass-profile { left: 12px; right: 12px; bottom: 12px; padding: 14px; border-radius: 20px; }
  .muse-glass-profile strong { font-size: clamp(38px, 12vw, 52px); }
  .muse-content { padding-top: 118px; }
}

@media (min-width: 760px) {
  .hero-copy { max-width: 520px; }
  h1 { font-size: clamp(26px, 2.4vw, 32px); line-height: 1.45; letter-spacing: .012em; }
  .scroll-cue { margin-left: auto; margin-right: auto; }
  .hero-card img { height: clamp(430px, 52vw, 560px); aspect-ratio: auto; }
  .hero-name { bottom: 44px; font-size: clamp(70px, 8vw, 112px); }

  .muse-image-wrap {
    top: 96px;
    margin-bottom: 0;
    max-width: 500px;
  }
  .muse-content {
    margin-top: 80px;
    padding-top: clamp(42px, 5vw, 70px);
    transform: translate3d(calc(-18px + var(--muse-progress) * 18px), calc(34px - var(--muse-progress) * 34px), 0);
  }
  .muse-mayu .muse-content {
    transform: translate3d(calc(18px - var(--muse-progress) * 18px), calc(34px - var(--muse-progress) * 34px), 0);
  }
  .muse-glass-profile {
    left: 18px;
    right: 18px;
    bottom: 20px;
    max-width: 360px;
    transform: translate3d(calc(-18px + var(--muse-progress) * 18px), calc(44px - var(--muse-progress) * 54px), 0) scale(calc(.95 + var(--muse-progress) * .05));
  }
  .muse-mayu .muse-glass-profile {
    margin-left: auto;
    transform: translate3d(calc(18px - var(--muse-progress) * 18px), calc(44px - var(--muse-progress) * 54px), 0) scale(calc(.95 + var(--muse-progress) * .05));
  }
}

@media (prefers-reduced-motion: reduce) {
  .muse { --muse-progress: 1 !important; }
  .muse-image,
  .muse-content,
  .muse-glass-profile { transform: none !important; opacity: 1 !important; }
}

/* ===== v9 final polish: smartphone-first, no floating profile badge ===== */
/* ここでは「画像に本文カードが重なる」演出へ一本化。身長/サイズのフロートは廃止。 */

/* Hero: delicate piping */
.hero-visual {
  gap: clamp(10px, 3vw, 16px);
}

.hero-visual::before {
  inset: 10% -10px -12px;
  opacity: .86;
}

.hero-card {
  padding: 2px !important;
  border: .45px solid rgba(184,155,106,.28) !important;
  box-shadow: 0 14px 36px rgba(63, 51, 45, .105) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.70), rgba(255,250,244,.36)) !important;
}

.hero-card img {
  border-radius: 22px !important;
}

.hero-card::before {
  inset: 2px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, transparent 50%, rgba(63,51,45,.24)) !important;
}

.hero-card figcaption {
  bottom: 8px !important;
  left: 8px !important;
  right: 8px !important;
  padding: 4px 7px !important;
  font-size: 9px !important;
  border: .4px solid rgba(255,255,255,.34);
}

.hero-name {
  bottom: 33px !important;
  opacity: .92;
}

/* Hero scroll: always visually centered */
.scroll-cue {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0 !important;
  text-align: center;
}

/* Remove the extra floating height/size profile plate completely */
.muse-glass-profile {
  display: none !important;
}

/* The main scroll action: photo first, then text card floats onto it */
.muse {
  --muse-progress: 0;
  padding-top: 20px;
  padding-bottom: 84px;
  overflow: visible;
}

.muse-image-wrap {
  position: sticky;
  top: 66px;
  z-index: 1;
  width: min(calc(100% - 34px), 620px);
  margin: 0 auto 0px !important;
  border-radius: 32px;
  border: .45px solid rgba(184,155,106,.22) !important;
  box-shadow: 0 22px 58px rgba(63,51,45,.125) !important;
  overflow: hidden;
  transform: translate3d(0, calc(var(--lux-y, 0px) * .35), 0);
  will-change: transform;
}

.muse-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,252,247,0) 0%, rgba(255,252,247,0) 42%, rgba(63,51,45,.18) 72%, rgba(63,51,45,.34) 100%),
    radial-gradient(circle at 50% 100%, rgba(184,155,106,.20), transparent 46%);
}

.muse-image {
  transform: scale(calc(1.045 - var(--muse-progress) * .035));
  transition: transform .08s linear;
  will-change: transform;
}

.floating-label {
  z-index: 3;
  border-width: .45px;
  background: linear-gradient(135deg, rgba(255,252,247,.78), rgba(255,255,255,.48));
  box-shadow: 0 10px 26px rgba(63,51,45,.08);
}

.muse-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 34px), var(--content-max));
  margin: 0 auto !important;
  padding: 72px 22px 78px !important;
  border-radius: 34px 34px 0 0;
  border: .45px solid rgba(255,255,255,.54);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255,252,247,.52) 0%, rgba(255,252,247,.93) 22%, rgba(255,252,247,.76) 100%);
  box-shadow: 0 -20px 54px rgba(63,51,45,.075);
  backdrop-filter: blur(18px) saturate(1.1);
  transform: translate3d(0, calc(40px - var(--muse-progress) * 40px), 0);
  transition: transform .08s linear;
  will-change: transform;
}

.muse-content::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,155,106,.40), transparent);
  opacity: calc(.28 + var(--muse-progress) * .62);
}

.muse-name {
  font-size: clamp(46px, 14.5vw, 82px) !important;
}

.muse-lead {
  font-size: clamp(18px, 4.6vw, 25px) !important;
}

/* Font Awesome accents: keep icons visible and elegant */
.story-card summary > i,
.scene-card i,
.instagram-link i,
.button i,
.floating-label i,
.hero-card figcaption i {
  color: var(--gold);
	font-size: 1.2em !important;
}

.instagram-link,
.button,
.story-card,
.scene-card,
.chips span {
  background: linear-gradient(135deg, rgba(255,252,247,.88), rgba(244,221,216,.40), rgba(239,225,205,.30)) !important;
}

/* Scroll action for story blocks: a small staggered lift */
.story-card.reveal,
.scene-card.reveal {
  transform: translateY(34px) scale(.985);
}
.story-card.reveal.is-visible,
.scene-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* Better smartphone text rhythm */
.intro,
.closing {
  text-align: left !important;
}

.hero-lead,
.intro-text,
.muse-copy,
.scene-card p,
.story-card p {
  text-align: left !important;
}

.quote-band {
  background: rgba(255,252,247,.18) !important;
}

.quote-band p {
  white-space: normal !important;
  overflow-wrap: normal !important;
  line-height: 1.15;
}

@media (max-width: 390px) {
  .hero-card {
    padding: 1.5px !important;
    border-radius: 22px !important;
  }
  .hero-card img,
  .hero-card::before {
    border-radius: 20px !important;
  }
  .hero-name {
    bottom: 30px !important;
    font-size: clamp(42px, 15vw, 56px) !important;
  }
  .muse-image-wrap {
    width: calc(100% - 28px);
    margin-bottom: -68px !important;
    border-radius: 28px;
  }
  .muse-content {
    width: calc(100% - 28px);
    padding: 66px 20px 72px !important;
    border-radius: 30px 30px 0 0;
  }
}

@media (min-width: 760px) {
  .hero-card {
    padding: 3px !important;
    border-radius: 30px !important;
  }
  .hero-card img,
  .hero-card::before {
    border-radius: 26px !important;
  }
  .hero-name { bottom: 40px !important; }

  .muse {
    grid-template-columns: minmax(300px, .96fr) minmax(360px, 1fr);
    gap: clamp(22px, 3.2vw, 42px);
  }
  .muse-image-wrap {
    top: 96px;
    max-width: 500px;
    margin: 0 !important;
  }
  .muse-content {
    width: 100%;
    margin-top: 78px !important;
    padding: clamp(42px, 5vw, 70px) clamp(28px, 4vw, 52px) !important;
    border-radius: 34px;
    border: .45px solid rgba(255,255,255,.52);
    transform: translate3d(calc(-18px + var(--muse-progress) * 18px), calc(34px - var(--muse-progress) * 34px), 0);
  }
  .muse-mayu .muse-content {
    transform: translate3d(calc(18px - var(--muse-progress) * 18px), calc(34px - var(--muse-progress) * 34px), 0);
  }

.muse-lead {
  font-size: clamp(14px, 4.2vw, 22px) !important;
}
}

@media (prefers-reduced-motion: reduce) {
  .muse { --muse-progress: 1 !important; }
  .muse-image,
  .muse-content { transform: none !important; }
}

/* ==========================================================
   REGINA Ambassador Muse LP - v10 class-safe visibility fix
   使い方: styles.css の一番最後に、このブロックを丸ごと貼り付けてください。
   既存クラス名は変更しません。HTMLも変更不要です。
   ========================================================== */

:root {
  --base: #f6eadf;
  --base-2: #e7d1c2;
  --card: #fffaf4;
  --rose: #d2a999;
  --pink: #dfbbb0;
  --brown: #3f332d;
  --muted: #715c51;
  --gold: #9b7446;
  --gold-deep: #765638;
  --navy-footer: #1d2b46;
}

/* 背景グラデーション: 淡すぎ問題を解消しつつ、上品なピンクゴールド感を残す */
body {
  background:
    radial-gradient(circle at 16% 5%, rgba(255, 255, 255, .72) 0 7rem, transparent 21rem),
    radial-gradient(circle at 88% 12%, rgba(224, 179, 164, .58), transparent 25rem),
    radial-gradient(circle at 18% 60%, rgba(184, 155, 106, .20), transparent 21rem),
    linear-gradient(180deg,
      #fff5ee 0%,
      #f2d2c7 20%,
      #f5e2d7 42%,
      #ead4c6 63%,
      #efe6f0 82%,
      #fffaf4 100%) !important;
}

.page-frame {
  background: linear-gradient(180deg, rgba(255, 252, 247, .42), rgba(255, 252, 247, .26)) !important;
}

/* 共通: アイコンは“薄い金”ではなく、読めるアンティークゴールドへ */
.story-card summary i,
.story-card summary > i,
.scene-card i,
.instagram-link i,
.button i,
.floating-label i,
.hero-card figcaption i {
  color: var(--gold-deep) !important;
  opacity: 1 !important;
  filter: none !important;
}

/* Instagramリンク: 単色寄り・視認性優先 */
.instagram-link {
  color: var(--brown) !important;
  background: #fffaf4 !important;
  border: 1px solid rgba(118, 86, 56, .38) !important;
  box-shadow: 0 10px 24px rgba(63, 51, 45, .08) !important;
  font-weight: 600 !important;
}

.instagram-link i {
  color: var(--gold-deep) !important;
}

/* チップ: 文字が沈まないように背景と文字色を固定 */
.chips span {
  color: var(--brown) !important;
  background: #fff7ef !important;
  border: 1px solid rgba(118, 86, 56, .30) !important;
  font-weight: 500 !important;
}

/* ストーリーカード: 淡グラデをやめて、ほぼ単色の上品カードへ */
.story-card {
  background: #fff8f1 !important;
  border: 1px solid rgba(118, 86, 56, .24) !important;
  box-shadow: 0 14px 34px rgba(63, 51, 45, .08) !important;
}

.story-card summary {
  color: var(--brown) !important;
  background: #fff8f1 !important;
}

.story-card summary span {
  color: var(--gold-deep) !important;
  opacity: 1 !important;
  font-weight: 700 !important;
}

.story-card summary > i {
  color: var(--gold-deep) !important;
  opacity: 1 !important;
  margin-top: .45em;
}

.story-card summary::after {
  color: var(--gold-deep) !important;
  background: #fffaf4 !important;
  border: 1px solid rgba(118, 86, 56, .36) !important;
  font-weight: 700 !important;
}

.story-card[open] summary::after {
  background: #ead6c7 !important;
  color: var(--brown) !important;
}

.story-card p {
  color: rgba(63, 51, 45, .92) !important;
}

/* シーンカードも単色寄りにして、アイコンと見出しを読ませる */
.scene-card {
  background: #fff8f1 !important;
  border: 1px solid rgba(118, 86, 56, .22) !important;
}

.scene-card span {
  color: var(--gold-deep) !important;
  font-weight: 700 !important;
}

.scene-card i {
  color: var(--gold-deep) !important;
}

/* CTAボタン: primaryは単色ブラウンで確実に読ませる */
.button {
  gap: 8px;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.button.primary {
  color: #fffaf4 !important;
  background: #3f332d !important;
  border: 1px solid #3f332d !important;
  box-shadow: 0 16px 34px rgba(63, 51, 45, .18) !important;
}

.button.primary i {
  color: #f2dccb !important;
}

/* ghostも単色系。淡さは背景で出して、文字は読ませる */
.button.ghost {
  color: var(--brown) !important;
  background: #fffaf4 !important;
  border: 1px solid rgba(118, 86, 56, .42) !important;
  box-shadow: 0 10px 24px rgba(63, 51, 45, .06) !important;
}

.button.ghost i {
  color: var(--gold-deep) !important;
}

@media (hover: hover) {
  .button.primary:hover {
    background: #2f2723 !important;
    box-shadow: 0 18px 38px rgba(63, 51, 45, .22) !important;
  }

  .button.ghost:hover,
  .instagram-link:hover {
    border-color: rgba(118, 86, 56, .58) !important;
    box-shadow: 0 16px 34px rgba(63, 51, 45, .11) !important;
  }
}

/* 光沢アニメが白くかぶって文字を飛ばす場合の保険 */
.instagram-link::after,
.button::after {
  opacity: .34 !important;
}

/* フッターがある場合の視認性補強。既存クラス名だけを対象にする */
.site-footer,
.footer,
.footer-section {
  background: var(--navy-footer) !important;
  color: #fffaf4 !important;
}

.site-footer a,
.footer a,
.footer-section a,
.site-footer i,
.footer i,
.footer-section i {
  color: #fffaf4 !important;
  opacity: .96 !important;
}

