/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
  background: #0c0907;
  overflow-x: hidden;
  max-width: 100%;
}

/* Long-form text containers: allow Japanese to break gracefully */
p, .vc-news .ttl, .vc-works .t, .vc-works .role,
.vc-topic .ttl, .vc-yt-meta .ttl, .vc-sns-card .han,
.vc-meta-grid b, .vc-about-stats b, .vc-fantia .perks span {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Grid/flex items: cancel implicit min-width:auto so 1fr columns can shrink */
.vc-bar nav,
.vc-news .row > *,
.vc-works .row > *,
.vc-meta-grid > div,
.vc-sect-head > *,
.vc-topic > *,
.vc-foot > *,
.vc-fantia > *,
.vc-about > * {
  min-width: 0;
}

.kurumi-site {
  --ivory: #f6f1e8;
  --ivory-deep: #ece4d3;
  --ink: #0c0907;
  --paper: #efe6d6;
  --paper-soft: #c8b7a0;
  --line: rgba(239, 230, 214, 0.14);
  --line-soft: rgba(239, 230, 214, 0.06);
  --pink: #f4d7d7;
  --pink-hot: #ee9aa3;
  --pink-deep: #d98a8a;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --script: 'Style Script', cursive;
  --jp: 'Noto Serif JP', serif;
  font-family: var(--serif);
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga', 'kern';
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

/* ============ Page enter fade ============ */
.vc-root { opacity: 0; transition: opacity 0.6s ease; }
.vc-root.is-loaded { opacity: 1; }

/* ============ Drifting glow blobs ============
 * The stage is position:fixed + overflow:hidden so the blobs (which have
 * negative offsets that intentionally bleed past the viewport) cannot trigger
 * horizontal page scroll on any device.
 */
.vc-glow-stage {
  position: fixed; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.vc-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  filter: blur(120px); opacity: 0.4;
  animation: k-drift 18s ease-in-out infinite;
  will-change: transform;
}
.vc-glow.a { left: -200px; top: -100px; background: rgba(238,154,163,0.55); }
.vc-glow.b { right: -200px; top: 40%; background: rgba(244,215,215,0.5); animation-delay: -6s; }
.vc-glow.c { left: 30%; top: 80%; background: rgba(216,138,138,0.5); animation-delay: -12s; }

/* ============ Grain overlay ============ */
.vc-root::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ============ Petals ============ */
.vc-petals { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.k-petal {
  position: absolute; top: 0;
  width: 14px; height: 14px;
  background: radial-gradient(ellipse 70% 100% at 50% 30%, var(--pink-deep), var(--pink) 60%, transparent 70%);
  border-radius: 100% 0 100% 0;
  animation: k-fall linear infinite;
  pointer-events: none;
  filter: blur(0.3px);
}

.vc-wrap { position: relative; z-index: 2; }

/* ============ Animations ============ */
@keyframes k-fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: translate3d(var(--dx, 40px), 110vh, 0) rotate(540deg); opacity: 0; }
}
@keyframes k-drift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-30px); }
}
@keyframes k-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes k-spin-slow { to { transform: rotate(360deg); } }
@keyframes k-blink {
  0%, 60%, 100% { opacity: 1; }
  30% { opacity: 0.4; }
}
@keyframes vc-letter-in {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes vc-stripe-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes vc-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vc-scrolltick {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============ Reveal ============ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============ Top bar ============ */
.vc-bar {
  position: sticky; top: 0; z-index: 30;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 16px 40px;
  background: rgba(12, 9, 7, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  animation: vc-fade-up 0.8s 0.1s both;
}
.vc-bar .logo { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; text-transform: none; }
.vc-bar .logo em { font-family: var(--script); color: var(--pink-hot); font-style: normal; font-size: 0.8em; padding: 0 6px; }
.vc-bar nav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.vc-bar nav a { position: relative; padding: 4px 0; }
.vc-bar nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--pink-hot); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.vc-bar nav a:hover { color: var(--pink-hot); }
.vc-bar nav a:hover::after { transform: scaleX(1); }
.vc-bar .cta-link { color: var(--pink-hot); }
.vc-bar .meta { display: flex; gap: 16px; align-items: center; }
.vc-bar .meta .pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink-hot); animation: k-blink 1.6s ease-in-out infinite;
}

/* ============ HERO ============ */
.vc-hero {
  position: relative; min-height: calc(100vh - 50px);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  padding: 0 0 80px;
}
.vc-hero-left {
  padding: 80px 56px 56px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  position: relative; z-index: 2;
}
.vc-hero-eye {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--paper-soft);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: vc-fade-up 0.8s 0.3s both;
}
.vc-hero-eye::before {
  content: ""; height: 1px; background: var(--paper-soft);
  animation: vc-stripe-grow 0.8s 0.5s both;
  transform-origin: left; width: 36px; flex-shrink: 0;
}

.vc-name {
  font-family: var(--display);
  font-size: clamp(56px, 13vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin-top: 18px;
  color: var(--paper);
  font-weight: 400;
  will-change: transform;
  overflow-wrap: anywhere;
}
.vc-name .script {
  display: block; font-family: var(--script); color: var(--pink-hot);
  font-size: 0.42em; line-height: 1; margin-bottom: 16px;
  opacity: 0; animation: vc-fade-up 0.8s 0.4s both;
}
.vc-name .line-1, .vc-name .second { display: block; }
.vc-name .second { font-style: italic; font-weight: 300; opacity: 0.85; }
.vc-name .jp {
  display: block; font-family: var(--jp); font-weight: 300;
  font-size: 0.16em; letter-spacing: 0.5em; color: var(--paper-soft); margin-top: 28px;
  opacity: 0; animation: vc-fade-up 0.9s 1.4s both;
}
.vc-letter {
  display: inline-block; opacity: 0;
  animation: vc-letter-in 0.9s cubic-bezier(0.2,0.8,0.2,1) both;
}

.vc-hero-bottom {
  display: flex; flex-direction: column; gap: 22px;
  opacity: 0; animation: vc-fade-up 0.9s 1.6s both;
}

.vc-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.vc-meta-grid > div {
  padding: 16px 14px 16px 0; border-right: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--paper-soft);
}
.vc-meta-grid > div:last-child { border-right: 0; }
.vc-meta-grid b {
  display: block; margin-top: 6px;
  font-family: var(--display); font-weight: 400; font-size: 22px;
  letter-spacing: 0; text-transform: none; color: var(--paper);
}

.vc-topic {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px; padding: 16px 22px;
  background: rgba(238, 154, 163, 0.10);
  border: 1px solid rgba(238, 154, 163, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: 0.3s;
}
.vc-topic:hover {
  background: rgba(238, 154, 163, 0.18);
  transform: translateX(6px);
  border-color: var(--pink-hot);
}
.vc-topic .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--pink-hot); }
.vc-topic .ttl { font-family: var(--jp); font-size: 13px; }
.vc-topic .arr {
  font-family: var(--mono); font-size: 14px; color: var(--pink-hot);
  transition: transform 0.3s;
}
.vc-topic:hover .arr { transform: translateX(4px); }

.vc-hero-right {
  position: relative; overflow: hidden;
  --hero-y: 0px; --hero-s: 1; --mx: 0; --my: 0;
}
.vc-hero-right .bg {
  position: absolute; inset: -40px;
  background-size: cover; background-position: center 12%;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--hero-y) * 1px + var(--my) * -10px), 0) scale(var(--hero-s));
  transition: transform 0.05s linear;
  will-change: transform;
}
.vc-hero-right::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,9,7,0.45) 0%, transparent 40%, transparent 70%, rgba(12,9,7,0.4) 100%);
  z-index: 1; pointer-events: none;
}
.vc-side-text {
  position: absolute; right: 18px; top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.4em;
  color: var(--paper); opacity: 0.75; white-space: nowrap; z-index: 2;
}
.vc-asterisk {
  position: absolute; bottom: 32px; left: 32px;
  width: 64px; height: 64px;
  color: var(--pink-hot);
  animation: k-spin-slow 12s linear infinite;
  z-index: 2;
}
.vc-asterisk svg { width: 100%; height: 100%; }
.vc-frame-no {
  position: absolute; top: 28px; left: 28px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--paper); opacity: 0.85;
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.4);
  background: rgba(12,9,7,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vc-scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--paper-soft);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.vc-scroll-cue .line {
  width: 1px; height: 28px; background: var(--paper-soft);
  position: relative; overflow: hidden;
}
.vc-scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--pink-hot);
  animation: vc-scrolltick 1.6s ease-in-out infinite;
}

/* ============ Ticker ============ */
.vc-ticker {
  padding: 22px 0;
  background: var(--paper); color: var(--ink);
  border-top: 1px solid #000; border-bottom: 1px solid #000;
  overflow: hidden;
}
.vc-ticker.dark {
  background: var(--ink); color: var(--paper);
  border-color: var(--line);
}
.vc-ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: k-marquee 40s linear infinite;
}
.vc-ticker.rev .vc-ticker-track {
  animation-direction: reverse;
  animation-duration: 50s;
}
.vc-ticker-track > * {
  padding: 0 28px; line-height: 1;
  display: inline-flex; align-items: center;
}
.vc-ticker-track .big { font-family: var(--display); font-size: 32px; }
.vc-ticker-track .scr { font-family: var(--script); font-size: 36px; color: var(--pink-hot); }
.vc-ticker-track .mn { font-family: var(--mono); font-size: 14px; letter-spacing: 0.22em; }

/* ============ Sections ============ */
.vc-sect { padding: 96px 56px; position: relative; }
.vc-sect-head {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 32px;
  margin-bottom: 56px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vc-sect-head .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; color: var(--paper-soft);
}
.vc-sect-head .t {
  font-family: var(--display); font-size: clamp(36px, 8vw, 92px);
  line-height: 0.95; color: var(--paper); font-weight: 400;
  overflow-wrap: anywhere;
}
.vc-sect-head .t em {
  font-family: var(--script); color: var(--pink-hot);
  font-style: normal; font-size: 0.55em; vertical-align: 0.15em; padding-right: 14px;
}
.vc-sect-head .jp {
  font-family: var(--jp); font-size: 12px; letter-spacing: 0.4em; color: var(--paper-soft);
}

/* ============ About ============ */
.vc-about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.vc-about-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.vc-about-photo .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1);
  transform: scale(1.08);
}
.vc-about-photo.is-in .img { transform: scale(1); }
.vc-about-photo::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(238,230,214,0.3);
  margin: 12px; pointer-events: none; z-index: 2;
}
.vc-about-text p {
  font-family: var(--jp); font-weight: 300; font-size: 15px;
  line-height: 2; margin-bottom: 12px; color: var(--paper); opacity: 0.9;
  text-wrap: pretty;
}
.vc-about-stats {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px;
}
.vc-about-stats > div {
  border-top: 1px solid var(--line);
  padding-top: 12px; transition: 0.25s;
}
.vc-about-stats > div:hover {
  border-top-color: var(--pink-hot);
  transform: translateY(-2px);
}
.vc-about-stats span {
  display: block; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; color: var(--paper-soft);
}
.vc-about-stats b {
  display: block; font-family: var(--jp); font-weight: 400;
  font-size: 14px; margin-top: 4px; color: var(--paper);
}

/* ============ News list ============ */
.vc-news .row {
  display: grid; grid-template-columns: 130px 90px 1fr auto; gap: 28px;
  align-items: center; padding: 22px 6px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.3s cubic-bezier(0.2,0.8,0.2,1),
              background 0.3s cubic-bezier(0.2,0.8,0.2,1),
              opacity 0.9s cubic-bezier(0.2,0.8,0.2,1),
              transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
  cursor: default;
}
.vc-news .row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--pink-hot);
  transition: width 0.3s;
}
.vc-news .row:hover { padding-left: 24px; background: rgba(238,154,163,0.04); }
.vc-news .row:hover::before { width: 3px; }
.vc-news .row:hover .arr { transform: translateX(6px); color: var(--pink-hot); }
.vc-news .date {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; color: var(--paper-soft);
}
.vc-news .tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  color: var(--pink-hot); border: 1px solid var(--pink-hot);
  padding: 4px 8px; text-align: center;
  transition: 0.25s;
}
.vc-news .row:hover .tag { background: var(--pink-hot); color: var(--ink); }
.vc-news .ttl {
  font-family: var(--jp); font-size: 14px; line-height: 1.5; color: var(--paper);
}
.vc-news .arr {
  font-family: var(--mono); font-size: 14px; color: var(--paper-soft);
  transition: 0.25s;
}

/* ============ Gallery ============ */
.vc-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.vc-gallery .g {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.vc-gallery .g .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s;
  transform: scale(1.05);
}
.vc-gallery .g:hover .img { transform: scale(1.15); filter: brightness(0.85); }
.vc-gallery .g::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.vc-gallery .g .lbl {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: var(--script); color: var(--pink-hot);
  font-size: 22px; line-height: 1;
  transform: translateY(8px); opacity: 0; transition: 0.4s;
}
.vc-gallery .g:hover .lbl { transform: translateY(0); opacity: 1; }
.vc-gallery .g1 { grid-column: span 4; aspect-ratio: 3/4; }
.vc-gallery .g2 { grid-column: span 4; aspect-ratio: 3/4; }
.vc-gallery .g3 { grid-column: span 4; aspect-ratio: 3/4; }
.vc-gallery .g4 { grid-column: span 5; aspect-ratio: 4/3; }
.vc-gallery .g5 { grid-column: span 4; aspect-ratio: 4/3; }
.vc-gallery .g6 { grid-column: span 3; aspect-ratio: 4/3; }
.vc-gallery .g5 .img,
.vc-gallery .g6 .img { background-position: center 8%; }

/* ============ MV (self-hosted music videos) ============ */
.vc-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.vc-mv {
  position: relative;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.vc-mv:hover { border-color: var(--pink-hot); }
.vc-mv-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}
.vc-mv-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: rgba(12,9,7,0.6);
}
.vc-mv-meta .t {
  font-family: var(--jp);
  font-size: 13px;
  line-height: 1.4;
  color: var(--paper);
  overflow-wrap: anywhere;
}
.vc-mv-meta .d {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-soft);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .vc-mv-grid { grid-template-columns: 1fr; gap: 12px; }
  .vc-mv-meta { padding: 12px 14px; }
  .vc-mv-meta .t { font-size: 12px; }
}

/* ============ YouTube ============ */
.vc-yt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vc-yt-cell { display: block; width: 100%; }
.vc-yt {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  color: var(--paper); cursor: pointer;
  background: var(--ink); display: block;
}
.vc-yt .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
  transform: scale(1.05);
}
.vc-yt:hover .img { transform: scale(1.15); }
.vc-yt::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  transition: 0.3s; z-index: 1;
}
.vc-yt:hover::after {
  background: linear-gradient(180deg, rgba(238,154,163,0.18) 0%, rgba(0,0,0,0.85));
}
.vc-yt-meta {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
}
.vc-yt-meta .ttl {
  font-family: var(--jp); font-size: 13px; line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-yt-meta .sub {
  display: flex; justify-content: space-between; gap: 8px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; opacity: 0.85;
}
.vc-yt-play {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: grid; place-items: center; z-index: 2;
  transition: 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.vc-yt:hover .vc-yt-play {
  background: var(--pink-hot);
  transform: scale(1.15) rotate(8deg);
}
.vc-yt-play::before {
  content: "";
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

/* ============ SNS ============ */
.vc-sns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vc-sns-cell { display: block; width: 100%; }
.vc-sns-card {
  display: block; position: relative;
  padding: 28px 24px;
  background: rgba(239,230,214,0.04);
  border: 1px solid var(--line);
  transition: 0.35s cubic-bezier(0.2,0.8,0.2,1);
  overflow: hidden;
}
.vc-sns-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 0;
  background: linear-gradient(180deg, transparent, rgba(238,154,163,0.16));
  transition: height 0.35s;
}
.vc-sns-card:hover { border-color: var(--pink-hot); transform: translateY(-6px); }
.vc-sns-card:hover::before { height: 100%; }
.vc-sns-card > * { position: relative; z-index: 1; }
.vc-sns-card .ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 22px; line-height: 1;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  transition: 0.3s;
}
.vc-sns-card:hover .ic { border-color: var(--pink-hot); color: var(--pink-hot); }
.vc-sns-card .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--paper-soft);
}
.vc-sns-card .han {
  font-family: var(--display); font-size: 22px;
  line-height: 1.1; margin-top: 6px; color: var(--paper);
}
.vc-sns-card .arr {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 14px; color: var(--pink-hot);
  transition: transform 0.3s;
}
.vc-sns-card:hover .arr { transform: translate(4px, -4px) rotate(8deg); }

/* ============ Fantia ============ */
.vc-fantia {
  margin-top: 72px;
  position: relative; overflow: hidden;
  padding: 64px 56px;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(238,154,163,0.55), transparent 60%),
    linear-gradient(135deg, #1a0e10 0%, #0c0907 60%);
  border: 1px solid rgba(238,154,163,0.35);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
  scroll-margin-top: 80px;
}
.vc-fantia-photo {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
  border: 1px solid rgba(238,154,163,0.4);
}
.vc-fantia-photo .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
  transform: scale(1.05);
}
.vc-fantia:hover .vc-fantia-photo .img { transform: scale(1.12); }
.vc-fantia .pre {
  font-family: var(--script); color: var(--pink-hot);
  font-size: 36px; line-height: 1;
}
.vc-fantia .ttl {
  font-family: var(--display); font-size: clamp(40px, 9vw, 96px);
  line-height: 1; margin-top: 4px; color: var(--paper);
  font-weight: 400;
  overflow-wrap: anywhere;
}
.vc-fantia p {
  font-family: var(--jp); font-weight: 300; font-size: 14px;
  line-height: 1.9; margin: 22px 0 28px; max-width: 460px; opacity: 0.9;
}
.vc-fantia .cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px;
  background: var(--pink-hot); color: var(--ink);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  transition: 0.3s cubic-bezier(0.2,0.8,0.2,1);
  position: relative; overflow: hidden;
}
.vc-fantia .cta::after {
  content: ""; position: absolute; inset: 0; background: var(--paper);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.vc-fantia .cta span { position: relative; z-index: 1; }
.vc-fantia .cta:hover { transform: translateY(-2px); }
.vc-fantia .cta:hover::after { transform: translateX(0); }
.vc-fantia .perks { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.vc-fantia .perks span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--paper-soft); padding: 6px 12px; border: 1px solid var(--line);
  transition: 0.25s;
}
.vc-fantia .perks span:hover { color: var(--pink-hot); border-color: var(--pink-hot); }

/* ============ Works ============ */
.vc-works .row {
  display: grid; grid-template-columns: 90px 1fr auto;
  align-items: baseline; gap: 28px;
  padding: 18px 6px; border-bottom: 1px solid var(--line-soft);
  transition: padding 0.25s, color 0.25s,
              opacity 0.9s cubic-bezier(0.2,0.8,0.2,1),
              transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
}
.vc-works .row::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: var(--pink-hot);
  transition: width 0.3s;
}
.vc-works .row:hover { padding-left: 14px; color: var(--pink-hot); }
.vc-works .row:hover::before { width: 8px; }
.vc-works .y {
  font-family: var(--display); font-size: 22px;
  color: var(--paper-soft); transition: 0.25s;
}
.vc-works .row:hover .y { color: var(--pink-hot); }
.vc-works .body { display: flex; flex-direction: column; gap: 4px; }
.vc-works .t {
  font-family: var(--jp); font-size: 16px; color: var(--paper); line-height: 1.4;
}
.vc-works .role {
  font-family: var(--script); font-size: 18px; color: var(--pink-hot); line-height: 1;
}
.vc-works .l {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--paper-soft); text-align: right;
}

/* ============ Footer ============ */
.vc-foot {
  margin-top: 96px;
  padding: 56px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: end;
  gap: 32px;
}
.vc-foot .big {
  font-family: var(--display); font-size: clamp(48px, 12vw, 140px);
  line-height: 0.9; color: var(--paper); text-align: center;
  overflow-wrap: anywhere;
}
.vc-foot .big em {
  font-family: var(--script); color: var(--pink-hot);
  font-style: normal; font-size: 0.5em; display: block;
}
.vc-foot .l, .vc-foot .r {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--paper-soft);
}
.vc-foot .r { text-align: right; }
.vc-foot a:hover { color: var(--pink-hot); }
.vc-foot .cta-link { color: var(--pink-hot); }

/* ============ Responsive ============
 * Breakpoints (mobile-first overrides applied at each level):
 *   1280px - tighten desktop padding
 *   1100px - compact nav, reduce hero font
 *   960px  - tablet: stack hero, reduce columns
 *   720px  - phone: 1-col grids, hide bar nav
 *   480px  - small phone: ultra-compact spacing
 *   360px  - tiny: force smallest type / hide decoratives
 */

/* 1280px — keep desktop layout but tighten breathing room */
@media (max-width: 1280px) {
  .vc-bar { padding: 14px 28px; gap: 16px; }
  .vc-bar nav { gap: 18px; }
  .vc-sect { padding: 88px 40px; }
  .vc-hero-left { padding: 64px 40px 48px; }
  .vc-foot { padding: 48px 40px; }
  .vc-fantia { padding: 56px 40px; }
}

/* 1100px — narrow desktop / large tablet landscape */
@media (max-width: 1100px) {
  .vc-bar nav { gap: 14px; font-size: 10px; }
  .vc-bar nav a { padding: 4px 0; }
  .vc-hero-left { padding: 56px 32px 40px; }
  .vc-news .row { grid-template-columns: 110px 80px 1fr auto; gap: 18px; }
}

/* 960px — tablet portrait: stack hero, simplify nav */
@media (max-width: 960px) {
  .vc-bar {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }
  .vc-bar nav { display: none; }
  .vc-bar .meta { font-size: 10px; }

  .vc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }
  .vc-hero-left {
    padding: 48px 24px 40px;
    order: 1;
    gap: 32px;
  }
  .vc-hero-right {
    order: 2;
    aspect-ratio: 16/10;
    min-height: auto;
    width: 100%;
    max-height: 70vh;
  }
  .vc-scroll-cue { display: none; }

  .vc-sect { padding: 64px 24px; }
  .vc-sect-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 40px;
  }
  .vc-sect-head .num { letter-spacing: 0.25em; }

  .vc-about { grid-template-columns: 1fr; gap: 32px; }
  .vc-about-photo { max-width: 480px; margin: 0 auto; width: 100%; }
  .vc-about-stats { grid-template-columns: repeat(2, 1fr); }

  .vc-news .row {
    grid-template-columns: 80px 70px 1fr;
    gap: 14px;
    padding: 18px 6px;
  }
  .vc-news .row .arr { display: none; }
  .vc-news .row:hover { padding-left: 18px; }

  .vc-gallery { grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .vc-gallery .g1, .vc-gallery .g2, .vc-gallery .g3 { grid-column: span 2; aspect-ratio: 3/4; }
  .vc-gallery .g4, .vc-gallery .g5, .vc-gallery .g6 { grid-column: span 2; aspect-ratio: 3/4; }

  .vc-yt-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .vc-sns { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vc-fantia { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .vc-fantia-photo { max-width: 360px; margin: 0 auto; width: 100%; }
  .vc-fantia p { max-width: none; }

  .vc-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .vc-meta-grid > div { padding-right: 12px; }
  .vc-meta-grid > div:nth-child(2) { border-right: 0; padding-right: 0; }
  .vc-meta-grid > div:nth-child(3),
  .vc-meta-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .vc-topic { padding: 14px 18px; gap: 14px; }

  .vc-works .row { grid-template-columns: 60px 1fr; gap: 16px; }
  .vc-works .l { grid-column: 2; text-align: left; margin-top: 4px; }

  .vc-foot {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .vc-foot .l, .vc-foot .r { text-align: center; }

  .vc-side-text, .vc-asterisk, .vc-frame-no { display: none; }

  .vc-ticker-track > * { padding: 0 18px; }
  .vc-ticker-track .big { font-size: 24px; }
  .vc-ticker-track .scr { font-size: 28px; }
  .vc-ticker-track .mn { font-size: 12px; }

  /* Smaller glow blobs on tablet so they don't dominate */
  .vc-glow { width: 480px; height: 480px; filter: blur(90px); opacity: 0.35; }
}

/* 720px — phone */
@media (max-width: 720px) {
  .vc-bar { padding: 12px 16px; }
  .vc-bar .logo { font-size: 18px; }
  .vc-bar .meta { font-size: 9px; gap: 10px; }

  .vc-hero-left { padding: 36px 16px 32px; gap: 24px; }
  .vc-hero-eye { font-size: 10px; letter-spacing: 0.28em; }
  .vc-hero-eye::before { width: 28px; }
  .vc-hero-right { aspect-ratio: 4/5; max-height: 80vh; }

  .vc-sect { padding: 48px 16px; }
  .vc-sect-head { margin-bottom: 32px; padding-bottom: 14px; }
  .vc-sect-head .t em { padding-right: 10px; font-size: 0.5em; }

  .vc-news .row {
    grid-template-columns: 90px 1fr;
    gap: 8px 14px;
    padding: 16px 4px;
  }
  .vc-news .row .date { grid-column: 1; grid-row: 1; }
  .vc-news .row .tag {
    grid-column: 2; grid-row: 1;
    justify-self: start; padding: 3px 8px; font-size: 9px;
  }
  .vc-news .row .ttl { grid-column: 1 / -1; grid-row: 2; }

  .vc-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .vc-gallery .g1, .vc-gallery .g2, .vc-gallery .g3,
  .vc-gallery .g4, .vc-gallery .g5, .vc-gallery .g6 {
    grid-column: span 1; aspect-ratio: 3/4;
  }
  .vc-gallery .g .lbl { font-size: 18px; bottom: 10px; left: 10px; }

  .vc-yt-grid { grid-template-columns: 1fr; gap: 10px; }
  .vc-yt { aspect-ratio: 16/9; }

  .vc-sns { grid-template-columns: 1fr; gap: 10px; }
  .vc-sns-card { padding: 22px 20px; }
  .vc-sns-card .ic { width: 40px; height: 40px; font-size: 20px; margin-bottom: 12px; }
  .vc-sns-card .han { font-size: 18px; }

  .vc-fantia { padding: 32px 16px; gap: 24px; margin-top: 48px; }
  .vc-fantia .pre { font-size: 28px; }
  .vc-fantia .perks { gap: 8px; }
  .vc-fantia .perks span { font-size: 9px; padding: 5px 10px; }
  .vc-fantia .cta { padding: 14px 22px; font-size: 10px; gap: 10px; }

  .vc-foot { padding: 32px 16px; }

  .vc-ticker { padding: 16px 0; }
  .vc-ticker-track > * { padding: 0 14px; }
  .vc-ticker-track .big { font-size: 20px; }
  .vc-ticker-track .scr { font-size: 24px; }
  .vc-ticker-track .mn { font-size: 11px; }

  .vc-meta-grid b { font-size: 18px; }

  .vc-works .row { grid-template-columns: 50px 1fr; gap: 12px; padding: 14px 4px; }
  .vc-works .y { font-size: 18px; }
  .vc-works .t { font-size: 14px; }
  .vc-works .role { font-size: 16px; }

  .vc-glow { width: 360px; height: 360px; filter: blur(70px); opacity: 0.3; }
}

/* 480px — small phone */
@media (max-width: 480px) {
  .vc-bar { gap: 8px; padding: 10px 14px; }
  .vc-bar .logo { font-size: 16px; }
  .vc-bar .meta { font-size: 8px; }
  .vc-bar .meta .pulse { width: 6px; height: 6px; }

  .vc-hero-left { padding: 28px 14px 24px; gap: 20px; }
  .vc-name { font-size: clamp(48px, 14vw, 80px); }
  .vc-name .script { font-size: 0.5em; margin-bottom: 10px; }
  .vc-name .jp { font-size: 11px; letter-spacing: 0.4em; margin-top: 18px; }

  .vc-meta-grid > div { padding: 12px 8px 12px 0; font-size: 9px; }
  .vc-meta-grid b { font-size: 16px; margin-top: 4px; }

  .vc-topic { padding: 12px 14px; gap: 10px; grid-template-columns: 1fr auto; }
  .vc-topic .lbl { grid-column: 1 / -1; }
  .vc-topic .ttl { grid-column: 1; font-size: 12px; line-height: 1.4; }
  .vc-topic .arr { grid-column: 2; }

  .vc-sect { padding: 40px 14px; }
  .vc-sect-head .num { font-size: 10px; }
  .vc-sect-head .t em { font-size: 0.45em; }
  .vc-sect-head .jp { font-size: 11px; letter-spacing: 0.3em; }

  .vc-about-stats { grid-template-columns: 1fr 1fr; gap: 12px 16px; }

  .vc-fantia { padding: 28px 14px; }

  .vc-foot { padding: 28px 14px; }
  .vc-foot .l, .vc-foot .r { font-size: 9px; }

  .vc-ticker { padding: 12px 0; }
  .vc-ticker-track > * { padding: 0 10px; }
  .vc-ticker-track .big { font-size: 18px; }
  .vc-ticker-track .scr { font-size: 22px; }
  .vc-ticker-track .mn { font-size: 10px; }
}

/* 360px — tiny phones (older Androids, narrow viewports) */
@media (max-width: 360px) {
  .vc-bar .meta { display: none; }
  .vc-name { font-size: 44px; }
  .vc-meta-grid { grid-template-columns: 1fr; }
  .vc-meta-grid > div {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 10px 0;
  }
  .vc-meta-grid > div:first-child { border-top: 1px solid var(--line); }
  .vc-about-stats { grid-template-columns: 1fr; }
  .vc-news .row { grid-template-columns: 1fr; gap: 6px; }
  .vc-news .row .date,
  .vc-news .row .tag { grid-column: 1; grid-row: auto; }
  .vc-news .row .tag { justify-self: start; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .vc-hero-right .bg { transform: none !important; }
}
