:root {
  --bg: #fff8f3;
  --bg-soft: #fff2eb;
  --surface: rgba(255, 252, 248, 0.96);
  --surface-strong: #fffdfb;
  --text: #4b393d;
  --muted: #7b6870;
  --accent: #e69cb0;
  --accent-strong: #cf708c;
  --accent-soft: #ffe3ea;
  --peach: #ffd7c6;
  --sky: #e3eefb;
  --lavender: #efe7ff;
  --border: rgba(98, 63, 73, 0.12);
  --border-strong: rgba(98, 63, 73, 0.18);
  --shadow: 0 18px 42px rgba(196, 148, 153, 0.13);
  --shadow-strong: 0 24px 56px rgba(196, 148, 153, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1080px;
  --font-sans: "Avenir Next", "Avenir", "SF Pro Text", "Sukhumvit Set",
    "Noto Sans Thai", "Thonburi", "Leelawadee UI", "Segoe UI", "PingFang SC",
    "Hiragino Sans", system-ui, sans-serif;
  --focus-ring: 0 0 0 3px rgba(207, 112, 140, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 224, 0.66), transparent 32%),
    radial-gradient(circle at top right, rgba(225, 238, 251, 0.8), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(255, 220, 198, 0.46), transparent 24%),
    linear-gradient(180deg, #fffaf6 0%, #fff4ef 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.54) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.52) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 68%, rgba(255, 255, 255, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 76%, rgba(255, 255, 255, 0.5) 0 2px, transparent 3px);
  opacity: 0.5;
}

img,
svg {
  display: block;
}

a,
button,
strong,
span,
p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

:lang(ja),
:lang(zh-CN) {
  word-break: keep-all;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 12px 14px 32px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 246, 0.92);
  box-shadow: 0 12px 24px rgba(191, 147, 150, 0.09);
  backdrop-filter: blur(14px);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 240, 244, 0.98), rgba(255, 248, 243, 0.98));
  border: 1px solid rgba(207, 112, 140, 0.15);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
}

.brand-pill__flower {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.95));
  color: var(--accent-strong);
}

.brand-pill__flower svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section-nav {
  display: flex;
  flex: 1 1 220px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(98, 63, 73, 0.08);
  font-size: 0.95rem;
}

.section-nav a:hover {
  color: var(--text);
  border-color: rgba(207, 112, 140, 0.22);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.language-button {
  min-height: 40px;
  min-width: 54px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(98, 63, 73, 0.08);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.language-button:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.language-button.is-active {
  color: #fffaf6;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 20px rgba(207, 112, 140, 0.18);
}

.noscript-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(98, 63, 73, 0.1);
  color: var(--muted);
}

.hero-panel,
.surface-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 22px;
  padding: 22px 18px;
  margin-bottom: 18px;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 231, 255, 0.88) 0%, rgba(239, 231, 255, 0) 72%);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.avatar-shell {
  position: relative;
  width: min(72vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 30px;
  border: 6px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 42px rgba(191, 147, 150, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 244, 239, 0.22), rgba(227, 238, 251, 0.22)),
    var(--avatar-image) center / cover no-repeat,
    linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.94));
}

.hero-blossom {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0 11px, transparent 12px),
    radial-gradient(circle at 70% 30%, rgba(255, 240, 244, 0.95) 0 11px, transparent 12px),
    radial-gradient(circle at 30% 70%, rgba(239, 231, 255, 0.95) 0 11px, transparent 12px),
    radial-gradient(circle at 70% 70%, rgba(255, 220, 198, 0.95) 0 11px, transparent 12px),
    radial-gradient(circle at center, rgba(230, 156, 176, 0.95) 0 7px, transparent 8px);
  opacity: 0.78;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 12px 0 0;
  font-size: clamp(1rem, 3.3vw, 1.18rem);
  color: rgba(75, 57, 61, 0.9);
  font-weight: 600;
  max-width: 34ch;
}

.hero-bio {
  margin: 12px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf6;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 28px rgba(207, 112, 140, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(98, 63, 73, 0.1);
  color: var(--text);
}

.surface-card {
  padding: 22px 18px;
  margin-bottom: 18px;
}

.section-heading {
  margin-bottom: 20px;
  max-width: 62ch;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

.links-grid,
.sticker-grid,
.streaming-grid,
.gallery-grid {
  display: grid;
  gap: 14px;
}

.links-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.link-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(98, 63, 73, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.94));
  box-shadow: 0 12px 24px rgba(191, 147, 150, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 112, 140, 0.22);
  box-shadow: 0 18px 32px rgba(191, 147, 150, 0.12);
}

.link-card.is-highlight {
  background:
    linear-gradient(135deg, rgba(255, 230, 238, 0.98), rgba(255, 252, 248, 0.96));
}

.link-card strong,
.sticker-copy strong,
.streaming-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.3;
}

.link-card span:last-child,
.sticker-copy span,
.streaming-card span {
  color: var(--muted);
  line-height: 1.5;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--accent-strong);
  background:
    linear-gradient(135deg, rgba(255, 227, 234, 0.98), rgba(239, 231, 255, 0.8));
  box-shadow: inset 0 0 0 1px rgba(207, 112, 140, 0.08);
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 112, 140, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 232, 239, 0.94), rgba(255, 248, 243, 0.98) 42%, rgba(239, 231, 255, 0.88));
  box-shadow: 0 14px 28px rgba(191, 147, 150, 0.1);
}

.shop-banner h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.4;
}

.shop-banner__cta {
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(98, 63, 73, 0.1);
  font-weight: 700;
}

.sticker-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sticker-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(98, 63, 73, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(191, 147, 150, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sticker-card:hover,
.streaming-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(191, 147, 150, 0.12);
}

.gallery-photo,
.lightbox-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 231, 238, 0.9), rgba(227, 238, 251, 0.7)),
    var(--card-image) center / cover no-repeat,
    linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.95));
}

.sticker-media {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 231, 238, 0.55), rgba(227, 238, 251, 0.4)),
    var(--card-image) center / contain no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.94));
  border: 1px solid rgba(98, 63, 73, 0.06);
}

.sticker-copy {
  display: grid;
  gap: 6px;
  padding: 2px 4px 4px;
}

.pill-label,
.media-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(98, 63, 73, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link {
  margin-top: 8px;
  color: var(--accent-strong);
  font-weight: 700;
}

.streaming-grid {
  grid-template-columns: 1fr;
}

.streaming-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(98, 63, 73, 0.08);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  display: block;
}

.gallery-photo {
  aspect-ratio: 4 / 5;
}

.gallery-photo::after,
.lightbox-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(75, 57, 61, 0.2) 100%);
}

.gallery-caption {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 1;
  color: #fffdfa;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-footer {
  padding: 14px 10px 10px;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0;
}

.site-footer__credit {
  font-weight: 700;
  color: var(--text);
}

.coming-soon-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(98, 63, 73, 0.18);
  color: var(--muted);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(66, 44, 50, 0.52);
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: calc(100vh - 36px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 250, 246, 0.98);
  box-shadow: var(--shadow-strong);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(98, 63, 73, 0.08);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.lightbox-media {
  min-height: min(72vh, 620px);
}

.lightbox-caption {
  margin: 14px 6px 2px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 719px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px 8px;
    padding: 12px;
  }

  .brand-pill {
    gap: 8px;
    min-height: 42px;
    padding: 0 12px 0 8px;
    font-size: 0.95rem;
  }

  .brand-pill__text,
  .section-nav a {
    white-space: nowrap;
  }

  .brand-pill__flower {
    width: 30px;
    height: 30px;
  }

  .brand-pill__flower svg {
    width: 16px;
    height: 16px;
  }

  .section-nav {
    flex: none;
    min-width: 0;
    gap: 6px;
    justify-content: flex-start;
  }

  .section-nav a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (min-width: 720px) {
  .page-shell {
    padding: 20px 20px 40px;
  }

  .avatar-shell {
    width: min(78vw, 286px);
  }

  .hero-panel {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 28px 26px;
  }

  .hero-visual {
    justify-self: stretch;
    justify-items: center;
  }

  .surface-card {
    padding: 28px 24px;
  }

  .streaming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .site-header {
    gap: 14px;
    padding: 16px 18px;
  }

  .avatar-shell {
    width: min(31vw, 304px);
  }

  .surface-card {
    padding: 30px 28px;
  }

  .hero-panel {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 34px;
    padding: 32px 34px;
  }

  .hero-visual {
    justify-items: center;
  }

  .link-card {
    min-height: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
