@font-face {
    font-family: "Sola Forte";
    src: url("../fonts/forte-mt-regular.9724f63eb4f1.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.sola-logo {
    font-family: "Sola Forte", serif;
    font-weight: 400;
    font-style: normal;
}

:root {
  --sola-ink: #080706;
  --sola-ink-soft: #14110f;
  --sola-paper: #f0e8db;
  --sola-paper-soft: #d8cec0;
  --sola-red: #d62f25;
  --sola-red-dark: #9f1e18;
  --sola-amber: #d69b48;
  --sola-line: rgba(240, 232, 219, .16);
  --sola-dot-paper: rgba(240, 232, 219, .2);
  --sola-dot-red: rgba(214, 47, 37, .3);
  --sola-dot-ink: rgba(8, 7, 6, .2);
  --sola-nav-bottom: 88px;
  --sola-shell: min(100% - 7rem, 1380px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--sola-ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sola-ink);
  color: var(--sola-paper);
  font-family: "Archivo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.sola-menu-open, body.sola-intro-active { overflow: hidden; }
button, input, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--sola-red); color: #fff; }
.sola-shell { width: var(--sola-shell); margin-inline: auto; }

/* ================================================================
   0. NAVIGATION
   ================================================================ */
.sola-nav {
  position: fixed;
  z-index: 1100;
  top: 1rem;
  right: 1.5rem;
  left: 1.5rem;
  min-height: 4.7rem;
  padding: .75rem .8rem .75rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid transparent;
  background: transparent;
  transition: background .38s ease, border-color .38s ease, box-shadow .38s ease, backdrop-filter .38s ease;
}
.sola-nav.is-scrolled {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(8, 7, 6, .74);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.sola-brand { position: relative; z-index: 3; display: inline-flex; flex-direction: column; line-height: 1; }
.sola-brand-main { font-size: 1.5rem; font-weight: 800; letter-spacing: .28em; }
.sola-brand-main::after { content: ""; display: inline-block; width: .38rem; height: .38rem; margin: 0 0 .06rem .06rem; border-radius: 50%; background: var(--sola-red); }
.sola-brand-sub { margin-top: .34rem; color: var(--sola-red); font-family: "Noto Serif JP", serif; font-size: .53rem; font-weight: 700; letter-spacing: .18em; }
.sola-nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(1.1rem, 2.4vw, 2.7rem); }
.sola-nav-links a { position: relative; color: rgba(240,232,219,.72); font-size: .72rem; font-weight: 650; letter-spacing: .075em; text-transform: uppercase; transition: color .25s ease; }
.sola-nav-links a::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; background: var(--sola-red); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.sola-nav-links a:hover { color: #fff; }
.sola-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.sola-menu-toggle { display: none; position: relative; z-index: 1102; width: 3rem; height: 3rem; border: 1px solid var(--sola-line); background: transparent; cursor: pointer; }
.sola-menu-toggle span { position: absolute; left: 50%; width: 19px; height: 1px; background: #fff; transform: translateX(-50%); transition: transform .28s ease, top .28s ease; }
.sola-menu-toggle span:first-child { top: 20px; }
.sola-menu-toggle span:last-child { top: 27px; }
.sola-menu-toggle.is-open span:first-child { top: 23px; transform: translateX(-50%) rotate(45deg); }
.sola-menu-toggle.is-open span:last-child { top: 23px; transform: translateX(-50%) rotate(-45deg); }

.sola-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  padding: 7rem 2rem 3rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  background: var(--sola-ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity .3s ease, clip-path .5s cubic-bezier(.76,0,.24,1), visibility 0s linear .5s;
}
.sola-mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; clip-path: inset(0); transition-delay: 0s; }
.sola-mobile-menu nav { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1.3rem; }
.sola-mobile-menu nav a { display: flex; align-items: baseline; gap: 1rem; font-size: clamp(2rem, 9vw, 4rem); font-weight: 800; line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.sola-mobile-menu nav small { color: var(--sola-red); font-size: .6rem; letter-spacing: .14em; }
.sola-mobile-menu-index { position: absolute; right: -.1em; bottom: -.25em; color: rgba(214,47,37,.1); font-family: "Noto Serif JP", serif; font-size: 12rem; font-weight: 900; }

.sola-btn { display: inline-flex; min-height: 3.2rem; padding: .9rem 1.15rem .9rem 1.35rem; align-items: center; justify-content: center; gap: 1.8rem; border: 1px solid transparent; font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.sola-btn:hover { transform: translateY(-2px); }
.sola-btn-primary { border-color: var(--sola-red); background: var(--sola-red); color: #fff; }
.sola-btn-primary:hover { border-color: #ef3b30; background: #ef3b30; }
.sola-btn-dark { border-color: var(--sola-ink); background: var(--sola-ink); color: #fff; }
.sola-text-link { display: inline-flex; padding-bottom: .45rem; align-items: center; gap: 1.4rem; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.sola-text-link i { color: var(--sola-red); }

/* ================================================================
   1. HERO
   ================================================================ */
.sola-hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 66% 48%, #2b120f 0, #100b09 34%, #080706 72%); }
.sola-hero-canvas, .sola-hero-poster { position: absolute; inset: 0; z-index: -5; width: 100%; height: 100%; object-fit: cover; }
.sola-hero-canvas { opacity: 0; transition: opacity .5s ease; }
.sola-video-ready .sola-hero-canvas { opacity: 1; }
.sola-video-ready .sola-hero-poster { opacity: 0; }
.sola-hero-poster { transition: opacity .5s ease; }
.sola-hero-video-source { position: fixed; left: -10px; bottom: -10px; z-index: -10; width: 1px; height: 1px; opacity: .01; pointer-events: none; }
.sola-hero-shade { position: absolute; inset: 0; z-index: -4; background: linear-gradient(90deg,rgba(8,7,6,.9) 0%,rgba(8,7,6,.62) 48%,rgba(8,7,6,.38) 100%), linear-gradient(0deg,rgba(8,7,6,.72),transparent 42%); }
.sola-hero-grid { position: absolute; inset: 0; z-index: -3; opacity: .12; background: linear-gradient(var(--sola-line) 1px,transparent 1px),linear-gradient(90deg,var(--sola-line) 1px,transparent 1px); background-size: 7.5vw 7.5vw; mask-image: linear-gradient(to bottom,#000,transparent 78%); }
.sola-hero-sun { position: absolute; z-index: -2; top: 8%; left: 52%; width: min(47vw,680px); aspect-ratio: 1; border: 1px solid rgba(214,47,37,.24); border-radius: 50%; }
.sola-hero-sun::before, .sola-hero-sun::after { content: ""; position: absolute; border: 1px solid rgba(214,47,37,.12); border-radius: inherit; }
.sola-hero-sun::before { inset: 8%; }.sola-hero-sun::after { inset: 16%; background: radial-gradient(circle,rgba(214,47,37,.14),transparent 67%); }
.sola-hero-inner { width: var(--sola-shell); min-height: 100vh; min-height: 100svh; margin: auto; padding: 9rem 0 7rem; display: flex; align-items: center; }
.sola-hero-copy { position: relative; z-index: 2; max-width: 1030px; opacity: 0; transform: translateY(1.2rem); }
body.sola-hero-revealed .sola-hero-copy { animation: solaHeroIn .9s ease forwards; }
.sola-eyebrow { display: flex; margin: 0 0 1.5rem; align-items: center; gap: .75rem; color: rgba(240,232,219,.7); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.sola-eyebrow > span { width: 2rem; height: 2px; background: var(--sola-red); }
.sola-hero h1 { margin: 0; font-size: clamp(3.7rem,7.1vw,8.7rem); font-weight: 770; line-height: .87; letter-spacing: -.065em; text-transform: uppercase; }
.sola-hero h1 em { color: var(--sola-red); font-family: "Noto Serif JP",serif; font-style: normal; font-weight: 400; text-transform: none; }
.sola-hero h1 strong { color: transparent; font-weight: 770; -webkit-text-stroke: 1px var(--sola-paper); }
.sola-hero-lead { max-width: 590px; margin: 2rem 0 0; color: rgba(240,232,219,.68); font-size: clamp(1rem,1.35vw,1.18rem); line-height: 1.75; }
.sola-hero-actions { display: flex; margin-top: 2.3rem; flex-wrap: wrap; align-items: center; gap: 1.9rem; }
.sola-hero-mark { position: absolute; right: 8vw; bottom: 13%; width: clamp(104px,10vw,148px); aspect-ratio: 1; display: grid; place-content: center; border-radius: 50%; background: var(--sola-red); text-align: center; transform: rotate(-9deg); box-shadow: 0 25px 60px rgba(0,0,0,.36); }
.sola-hero-mark::before { content: ""; position: absolute; inset: .55rem; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; }
.sola-hero-mark span { font-size: 2.2rem; font-weight: 850; letter-spacing: .17em; }.sola-hero-mark small { font-size: 1.25rem; letter-spacing: .25em; }
.sola-hero-meta { position: absolute; left: 1.5rem; bottom: 1.35rem; display: flex; align-items: center; gap: 1rem; color: rgba(240,232,219,.64); font-size: .61rem; letter-spacing: .11em; text-transform: uppercase; }
.sola-hero-meta span + span::before, .sola-hero-meta strong::before { content: ""; display: inline-block; width: 3px; height: 3px; margin: 0 1rem .12rem 0; border-radius: 50%; background: var(--sola-red); }
.sola-scroll-cue { position: absolute; right: 1.6rem; bottom: 1.3rem; display: flex; align-items: center; gap: .8rem; color: rgba(240,232,219,.45); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.sola-scroll-cue span { width: 1px; height: 36px; background: var(--sola-red); }

.sola-intro { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.sola-intro-panel { position: absolute; top: 0; width: 50%; height: 100%; background: #050403; }
.sola-intro-panel.is-left { left: 0; }.sola-intro-panel.is-right { right: 0; }
.sola-intro-lines { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3,1fr); opacity: 0; }
.sola-intro-lines i { border-right: 1px solid rgba(255,255,255,.12); }
.sola-intro-brand { position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; opacity: 0; transform: translate(-50%,-46%); }
.sola-intro-brand strong { font-size: clamp(2rem,5vw,4.6rem); letter-spacing: .3em; }.sola-intro-brand small { margin-top: .6rem; color: var(--sola-red); font-family: "Noto Serif JP",serif; letter-spacing: .18em; }
body.sola-intro-start .sola-intro-lines { animation: solaIntroLines .5s ease .1s forwards; }
body.sola-intro-start .sola-intro-brand { animation: solaIntroBrand .7s ease .25s forwards; }
body.sola-intro-open .sola-intro-panel.is-left { animation: solaPanelLeft .9s cubic-bezier(.76,0,.24,1) forwards; }
body.sola-intro-open .sola-intro-panel.is-right { animation: solaPanelRight .9s cubic-bezier(.76,0,.24,1) forwards; }
body.sola-intro-open .sola-intro-brand, body.sola-intro-open .sola-intro-lines { opacity: 0; transition: opacity .25s ease; }
@keyframes solaIntroLines { to { opacity: 1; } }
@keyframes solaIntroBrand { to { opacity: 1; transform: translate(-50%,-50%); } }
@keyframes solaPanelLeft { to { transform: translateY(-100%); } }
@keyframes solaPanelRight { to { transform: translateY(100%); } }
@keyframes solaHeroIn { to { opacity: 1; transform: none; } }

.sola-marquee { overflow: hidden; padding: 1.05rem 0; border-block: 1px solid #e54338; background: var(--sola-red); color: white; }
.sola-marquee-track {
  --sola-marquee-duration: 28s;
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: solaMarquee var(--sola-marquee-duration) linear infinite;
  animation-play-state: paused;
}
.sola-marquee-track.is-ready { animation-play-state: running; }
.sola-marquee-group { flex: 0 0 auto; display: flex; align-items: center; gap: 2rem; padding-right: 2rem; }
.sola-marquee span { font-size: .76rem; font-weight: 800; letter-spacing: .18em; }.sola-marquee i { font-size: .42rem; font-style: normal; }
@keyframes solaMarquee { to { transform: translate3d(-50%,0,0); } }

/* ================================================================
   2~3. RAMEN
   ================================================================ */
.sola-section-index { color: rgba(240,232,219,.4); font-size: .62rem; font-weight: 700; letter-spacing: .16em; }
.sola-jp-kicker { margin: 0 0 1.4rem; color: var(--sola-red); font-family: "Noto Serif JP",serif; font-size: .84rem; font-weight: 700; letter-spacing: .2em; }
.sola-manifesto { position: relative; min-height: 78vh; padding-block: clamp(7rem,12vw,12rem); display: grid; grid-template-columns: 1fr 3fr 1fr; align-items: start; border-inline: 1px solid rgba(240,232,219,.07); }
.sola-manifesto-copy { max-width: 900px; align-self: center; }
.sola-manifesto h2, .sola-section-heading h2, .sola-universe-copy h2, .sola-bubble-copy h2, .sola-menu-heading h2, .sola-social-copy h2, .sola-contact-title h2 { margin: 0; font-size: clamp(3rem,5.6vw,7rem); font-weight: 760; line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.sola-manifesto h2 span, .sola-universe-copy h2 span, .sola-bubble-copy h2 span { color: transparent; -webkit-text-stroke: 1px var(--sola-paper); }
.sola-manifesto-copy > p:last-child { max-width: 610px; margin: 2.1rem 0 0 auto; color: rgba(240,232,219,.62); font-size: 1.04rem; line-height: 1.8; }
.sola-manifesto-seal { width: clamp(86px,8vw,118px); aspect-ratio: 1; display: grid; place-items: center; justify-self: end; align-self: end; border: 2px solid var(--sola-red); color: var(--sola-red); font-family: "Noto Serif JP",serif; font-size: 5rem; font-weight: 900; transform: rotate(3deg); }
.sola-manifesto-neon { position: absolute; inset: 2.5rem 0; z-index: 0; overflow: hidden; pointer-events: none; user-select: none; background: radial-gradient(circle at 88% 18%,rgba(214,47,37,.085),transparent 24%),radial-gradient(circle at 9% 79%,rgba(214,155,72,.055),transparent 21%); mix-blend-mode: screen; }
.sola-manifesto-neon::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg,var(--sola-ink) 0,transparent 10%,transparent 90%,var(--sola-ink) 100%),linear-gradient(0deg,var(--sola-ink) 0,transparent 12%,transparent 88%,var(--sola-ink) 100%); opacity: .52; pointer-events: none; }
.sola-ghost-sign { --neon-time: 7.3s; --neon-delay: -1.2s; position: absolute; z-index: 1; min-width: 4.5rem; min-height: 4.5rem; padding: .75rem; display: flex; align-items: center; justify-content: center; gap: .45rem; border: 1px solid currentColor; background: linear-gradient(145deg,rgba(214,47,37,.1),rgba(8,7,6,.18)); color: var(--sola-red); font-style: normal; line-height: .9; letter-spacing: .08em; text-transform: uppercase; opacity: .24; filter: drop-shadow(0 0 5px currentColor) drop-shadow(0 0 18px currentColor); animation: solaNeonFlicker var(--neon-time) steps(1,end) var(--neon-delay) infinite; }
.sola-ghost-sign::before,.sola-ghost-sign::after { content: ""; position: absolute; background: currentColor; opacity: .45; }
.sola-ghost-sign::before { top: -15px; left: 18%; width: 1px; height: 15px; }.sola-ghost-sign::after { right: -19px; bottom: 22%; width: 19px; height: 1px; }
.sola-ghost-sign strong { font-family: "Noto Serif JP",serif; font-weight: 900; }.sola-ghost-sign small { font-size: .48rem; font-weight: 800; letter-spacing: .18em; }
.sola-ghost-sign.is-ramen { --neon-time: 8.7s; --neon-delay: -5.1s; top: 5%; right: 2.5%; padding: 1.05rem .7rem; flex-direction: column; writing-mode: vertical-rl; transform: rotate(2deg); }.sola-ghost-sign.is-ramen strong { font-size: clamp(1.7rem,2.8vw,3rem); }
.sola-ghost-sign.is-sola { --neon-time: 6.4s; --neon-delay: -2.7s; left: 1.5%; bottom: 10%; flex-direction: column; color: var(--sola-amber); transform: rotate(-7deg); }.sola-ghost-sign.is-sola strong { font-size: clamp(2rem,3.2vw,3.5rem); }
.sola-ghost-sign.is-94 { --neon-time: 9.1s; --neon-delay: -7.4s; right: 20%; bottom: 7%; width: clamp(78px,7vw,108px); aspect-ratio: 1; border-radius: 50%; transform: rotate(5deg); }.sola-ghost-sign.is-94 strong { font-size: clamp(2rem,3vw,3.3rem); }
.sola-ghost-sign.is-manga { --neon-time: 7.8s; --neon-delay: -3.6s; top: 7%; left: 17%; flex-direction: column-reverse; color: rgba(240,232,219,.9); transform: rotate(-3deg); }.sola-ghost-sign.is-manga strong { color: var(--sola-red); font-size: clamp(2.1rem,3.4vw,3.8rem); }
.sola-ghost-sign.is-bars { --neon-time: 5.9s; --neon-delay: -4.2s; top: 40%; right: 7%; min-width: 8rem; min-height: 5rem; flex-direction: column; align-items: stretch; transform: skewY(-6deg); }.sola-ghost-sign.is-bars i { height: 2px; background: currentColor; box-shadow: 0 0 10px currentColor; }.sola-ghost-sign.is-bars i:nth-child(2) { width: 72%; }.sola-ghost-sign.is-bars i:nth-child(3) { width: 42%; }
@keyframes solaNeonFlicker { 0%,13%,17%,43%,48%,72%,76%,100% { opacity: .24; } 14%,16%,44%,46%,74% { opacity: .07; } 47%,73%,75% { opacity: .36; } 67% { opacity: .15; } }
.sola-signatures { padding-bottom: clamp(7rem,11vw,11rem); }
.sola-section-heading { display: flex; padding-bottom: 2.7rem; align-items: end; justify-content: space-between; gap: 3rem; border-bottom: 1px solid var(--sola-line); }
.sola-section-heading h2 { font-size: clamp(2.8rem,4.6vw,5.8rem); }.sola-section-heading h2 em, .sola-menu-heading h2 em, .sola-social-copy h2 em, .sola-contact-title h2 em { color: var(--sola-red); font-family: "Noto Serif JP",serif; font-style: normal; font-weight: 400; text-transform: none; }
.sola-section-heading > p { max-width: 360px; margin: 0; color: rgba(240,232,219,.54); line-height: 1.7; }
.sola-ramen-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; padding-top: 1rem; }
.sola-ramen-card { overflow: hidden; border: 1px solid var(--sola-line); background: #0d0b0a; transition: transform .35s ease, border-color .35s ease; }
.sola-ramen-card:nth-child(2) { transform: translateY(2.5rem); }.sola-ramen-card:hover { transform: translateY(-.35rem); border-color: rgba(214,47,37,.7); }.sola-ramen-card:nth-child(2):hover { transform: translateY(2.15rem); }
.sola-ramen-photo { position: relative; aspect-ratio: .86; overflow: hidden; background: radial-gradient(circle,#38201a,#0d0b0a 70%); }
.sola-ramen-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,7,6,.65),transparent 50%); }
.sola-ramen-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }.sola-ramen-card:hover img { transform: scale(1.045); }
.sola-card-number { position: absolute; z-index: 2; top: 1rem; left: 1rem; font-size: .62rem; letter-spacing: .15em; }.sola-card-jp { position: absolute; z-index: 2; right: 1rem; bottom: .4rem; color: rgba(255,255,255,.82); font-family: "Noto Serif JP",serif; font-size: 5rem; font-weight: 900; line-height: 1; }
.sola-ramen-copy { min-height: 150px; padding: 1.45rem; display: flex; justify-content: space-between; gap: 1.2rem; }.sola-ramen-copy h3 { margin: 0; font-size: 1.28rem; text-transform: uppercase; }.sola-ramen-copy p { max-width: 260px; margin: .55rem 0 0; color: rgba(240,232,219,.5); font-size: .78rem; line-height: 1.6; }.sola-ramen-copy strong { color: var(--sola-red); font-size: 1.4rem; }

/* ================================================================
   4. UNIVERS
   ================================================================ */
.sola-universe { padding: clamp(7rem,11vw,11rem) 0; background: var(--sola-paper); color: var(--sola-ink); }
.sola-universe-inner { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(4rem,8vw,8rem); }
.sola-universe .sola-section-index, .sola-bubble .sola-section-index { color: rgba(8,7,6,.45); }
.sola-universe-copy h2 { font-size: clamp(2.9rem,4.8vw,6.2rem); }.sola-universe-copy h2 span { -webkit-text-stroke-color: var(--sola-ink); }
.sola-universe-copy > p:not(.sola-jp-kicker) { max-width: 580px; margin: 2rem 0; color: rgba(8,7,6,.66); font-size: 1.02rem; line-height: 1.8; }
.sola-universe-art { min-height: 670px; display: grid; grid-template-columns: .72fr 1.28fr; grid-template-rows: 1.1fr .9fr; gap: .8rem; transform: rotate(1.2deg); }
.sola-manga-panel { position: relative; overflow: hidden; border: 4px solid var(--sola-ink); }
.sola-manga-panel.is-red { padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; background: var(--sola-red); }.sola-manga-panel.is-red::after { content: ""; position: absolute; inset: -30%; background: repeating-radial-gradient(circle at center,transparent 0 8px,rgba(8,7,6,.18) 9px 10px); }.sola-manga-panel.is-red span { position: relative; z-index: 1; font-family: "Noto Serif JP",serif; font-size: clamp(4rem,8vw,8rem); font-weight: 900; writing-mode: vertical-rl; }.sola-manga-panel.is-red small { position: relative; z-index: 1; font-size: .62rem; font-weight: 800; letter-spacing: .18em; }
.sola-manga-panel.is-dark { grid-row: span 2; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 50% 36%,#57211b,#120c0a 55%,#080706); color: var(--sola-paper); }.sola-manga-panel.is-dark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 34px 34px; }
.sola-art-placeholder { position: relative; z-index: 1; min-height: 300px; display: grid; place-items: center; }.sola-art-placeholder > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0,0,0,.38)); }.sola-letter-grid { align-self: stretch; display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid rgba(240,232,219,.18); }.sola-letter-grid i { min-height: 180px; display: grid; place-items: center; border-right: 1px solid rgba(240,232,219,.13); color: var(--sola-red); font-size: clamp(2.5rem,4vw,4.8rem); font-style: normal; font-weight: 850; }.sola-letter-grid i:last-child { border: 0; }
.sola-art-placeholder { min-height: clamp(370px,29vw,450px); }
.sola-art-placeholder > img { inset: 50% auto auto 50%; z-index: 2; width: 145%; height: 145%; max-width: none; transform: translate(-50%,-50%); filter: drop-shadow(0 34px 42px rgba(0,0,0,.48)) drop-shadow(0 0 24px rgba(214,47,37,.12)); }
.sola-letter-grid { position: relative; z-index: 1; width: 116%; margin-inline: -8%; }
.sola-letter-grid i { min-height: clamp(210px,18vw,280px); font-size: clamp(3.3rem,5.2vw,6.4rem); font-weight: 900; text-shadow: 0 0 28px rgba(214,47,37,.2); }
.sola-manga-panel.is-dark > strong { position: relative; z-index: 1; font-size: clamp(2.5rem,4vw,4.8rem); font-weight: 850; line-height: .82; letter-spacing: -.05em; }
.sola-manga-panel.is-paper { display: flex; align-items: center; justify-content: space-around; background: #d8cdbd; }.sola-manga-panel.is-paper::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(8,7,6,.35) .7px,transparent .7px); background-size: 5px 5px; opacity: .35; }.sola-manga-panel.is-paper b { position: relative; font-size: 7rem; }.sola-manga-panel.is-paper span { position: relative; font-size: .64rem; font-weight: 800; letter-spacing: .16em; line-height: 1.8; }

/* ================================================================
   5. BUBBLE TEA
   ================================================================ */
.sola-bubble { position: relative; overflow: hidden; padding: clamp(7rem,11vw,11rem) 0; background: linear-gradient(135deg,#e6b9c8,#f2d7bb); color: var(--sola-ink); }.sola-bubble::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 40%,rgba(244,210,116,.88),transparent 28%),radial-gradient(circle at 77% 23%,rgba(167,201,148,.75),transparent 29%); }
.sola-bubble-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(4rem,8vw,9rem); }
.sola-bubble-art { position: relative; min-height: 640px; }.sola-bubble-art > img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 34px 34px rgba(8,7,6,.22)); }
.sola-bubble-type { position: absolute; inset: 4% 8% 4% 3%; padding: clamp(1.5rem,3vw,3rem); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 3px solid var(--sola-ink); background: rgba(242,232,219,.62); box-shadow: 24px 28px 0 rgba(8,7,6,.12); transform: rotate(-2deg); }.sola-bubble-type::after { content: ""; position: absolute; right: -13%; bottom: -18%; width: 63%; aspect-ratio: 1; border: 2px solid var(--sola-red); border-radius: 50%; box-shadow: 0 0 0 28px rgba(214,47,37,.08),0 0 0 58px rgba(214,47,37,.05); }.sola-bubble-type > span { position: relative; z-index: 1; align-self: flex-end; color: var(--sola-red); font-family: "Noto Serif JP",serif; font-size: clamp(5rem,10vw,10rem); font-weight: 900; line-height: .8; }.sola-bubble-type small { position: relative; z-index: 1; font-size: .65rem; font-weight: 800; letter-spacing: .18em; }.sola-bubble-type strong { position: relative; z-index: 1; font-size: clamp(4rem,7.8vw,8rem); font-weight: 900; line-height: .73; letter-spacing: -.07em; }
.sola-bubble-copy h2 { font-size: clamp(3rem,5.2vw,6.4rem); }.sola-bubble-copy h2 span { -webkit-text-stroke-color: var(--sola-ink); }.sola-bubble-copy > p:not(.sola-jp-kicker) { max-width: 600px; margin: 2rem 0; color: rgba(8,7,6,.65); font-size: 1.02rem; line-height: 1.8; }.sola-flavours { display: flex; margin-bottom: 2.2rem; flex-wrap: wrap; gap: .6rem; }.sola-flavours span { padding: .7rem .9rem; border: 1px solid rgba(8,7,6,.28); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   6. MENU DYNAMIQUE
   ================================================================ */
.sola-menu { padding-block: clamp(7rem,11vw,11rem); overflow: visible; }
.sola-menu-heading { display: flex; align-items: end; justify-content: space-between; gap: 4rem; }.sola-menu-heading h2 { font-size: clamp(3.1rem,5vw,6.5rem); }.sola-menu-heading > p { max-width: 380px; margin: 0; color: rgba(240,232,219,.5); line-height: 1.7; }
.sola-menu-tabs-sentinel { height: 1px; pointer-events: none; }
.sola-menu-tabs { position: sticky; top: var(--sola-nav-bottom); z-index: 50; margin: 3.5rem 0 1.2rem; display: grid; grid-template-columns: auto 1fr auto; border: 1px solid var(--sola-line); background: rgba(8,7,6,.92); backdrop-filter: blur(18px); transition: box-shadow .25s ease, border-color .25s ease; }.sola-menu-tabs.is-stuck { border-color: rgba(214,47,37,.38); box-shadow: 0 22px 55px rgba(0,0,0,.36); }
.sola-tabs-rail { display: flex; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }.sola-tabs-rail::-webkit-scrollbar { display: none; }.sola-tabs-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.sola-menu-tab { flex: 1 0 auto; min-height: 4.2rem; padding: 1rem 1.5rem; border: 0; border-right: 1px solid var(--sola-line); background: transparent; color: rgba(240,232,219,.56); font-size: .73rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; transition: .25s ease; }.sola-menu-tab:hover,.sola-menu-tab.is-active { background: var(--sola-red); color: #fff; }
.sola-tab-arrow { width: 4rem; border: 0; background: #100d0b; cursor: pointer; transition: opacity .2s ease, background .2s ease; }.sola-tab-arrow:hover { background: #211713; }.sola-tab-arrow.is-disabled { opacity: .25; pointer-events: none; }
.sola-menu-stage { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sola-menu-gallery,.sola-menu-panel { min-height: 650px; border: 1px solid var(--sola-line); background: #0e0c0a; }
.sola-gallery-frame { position: relative; height: 590px; overflow: hidden; background: radial-gradient(circle,#2b1a16,#0b0908 70%); }.sola-gallery-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,7,6,.65),transparent 42%); pointer-events: none; }.sola-gallery-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.02); transition: opacity .42s ease,transform .65s ease; }.sola-gallery-img.is-on { opacity: 1; transform: scale(1); }
.sola-gallery-nav { position: absolute; z-index: 3; top: 50%; width: 3.1rem; height: 3.1rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); background: rgba(8,7,6,.6); backdrop-filter: blur(10px); cursor: pointer; transform: translateY(-50%); }.sola-gallery-nav.is-prev { left: 1rem; }.sola-gallery-nav.is-next { right: 1rem; }.sola-gallery-nav.is-disabled { opacity: .25; pointer-events: none; }
.sola-gallery-meta { min-height: 58px; padding: 0 1.2rem; display: flex; align-items: center; justify-content: space-between; color: rgba(240,232,219,.55); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.sola-menu-panel { padding: 1.5rem; }.sola-menu-panel-head { min-height: 96px; display: flex; align-items: start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--sola-line); }.sola-menu-panel-head p { margin: 0 0 .5rem; color: var(--sola-red); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.sola-menu-panel-head h3 { margin: 0; font-size: 1.7rem; text-transform: uppercase; }.sola-menu-panel-head > span { color: rgba(240,232,219,.35); font-size: .65rem; }
.sola-menu-accordion { padding-top: .5rem; }.sola-menu-loading { min-height: 360px; display: flex; align-items: center; justify-content: center; gap: 1rem; color: rgba(240,232,219,.42); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }.sola-menu-loading span { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.18); border-top-color: var(--sola-red); border-radius: 50%; animation: solaSpin .75s linear infinite; }@keyframes solaSpin { to { transform: rotate(1turn); } }
.sola-menu-acc,.hiro-menu-acc { border-bottom: 1px solid var(--sola-line); }.sola-menu-acc-btn,.hiro-menu-acc-btn { width: 100%; min-height: 72px; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 0; background: transparent; text-align: left; cursor: pointer; }.sola-menu-acc-title,.hiro-menu-acc-title { font-size: .92rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }.sola-menu-acc-chev,.hiro-menu-acc-chev { transition: transform .25s ease; }.sola-menu-acc.is-open .sola-menu-acc-chev,.hiro-menu-acc.is-open .hiro-menu-acc-chev { transform: rotate(180deg); }.sola-menu-acc-panel,.hiro-menu-acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }.sola-menu-acc-inner,.hiro-menu-acc-inner { padding-bottom: 1.2rem; }.sola-menu-item,.hiro-menu-item { min-height: 54px; padding: .7rem 0; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: start; }.sola-menu-item-name,.hiro-menu-item-name { color: rgba(240,232,219,.72); font-size: .78rem; line-height: 1.45; }.sola-menu-item-price,.hiro-menu-item-price { color: var(--sola-red); font-size: .8rem; font-weight: 750; }.sola-menu-empty,.hiro-menu-empty { padding: 3rem 1rem; color: rgba(240,232,219,.45); text-align: center; line-height: 1.7; }
.sola-menu-all { margin-top: 1rem; min-height: 5rem; padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--sola-line); font-size: .77rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; transition: .25s ease; }.sola-menu-all:hover { background: var(--sola-paper); color: var(--sola-ink); }.sola-menu-all i { color: var(--sola-red); }

/* ================================================================
   7~8. SOCIAL, CONTACT, FOOTER
   ================================================================ */
.sola-social { padding: clamp(7rem,10vw,10rem) 0; background: #0f0c0a; }.sola-social-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; align-items: end; }.sola-social-copy h2 { margin-top: 1.5rem; font-size: clamp(3rem,4.5vw,5.5rem); }.sola-social-copy > p { max-width: 430px; color: rgba(240,232,219,.5); line-height: 1.75; }
.sola-social-links { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }.sola-social-card { position: relative; min-height: 270px; padding: 1.4rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid var(--sola-line); transition: transform .3s ease,border-color .3s ease,background .3s ease; }.sola-social-card::before { content: ""; position: absolute; width: 170px; aspect-ratio: 1; top: -70px; right: -70px; border: 1px solid rgba(214,47,37,.25); border-radius: 50%; }.sola-social-card:hover { transform: translateY(-5px); border-color: rgba(214,47,37,.7); background: rgba(214,47,37,.07); }.sola-social-card > i { position: absolute; top: 1.4rem; left: 1.4rem; color: var(--sola-red); font-size: 1.5rem; }.sola-social-card > span { font-size: 1.15rem; font-weight: 750; text-transform: uppercase; }.sola-social-card > small { margin-top: .5rem; color: rgba(240,232,219,.45); }.sola-social-card > b { position: absolute; right: 1.3rem; bottom: 1.3rem; color: var(--sola-red); }.sola-social-card.is-pending { opacity: .55; }
.sola-contact { border-top: 1px solid var(--sola-line); background: #0d0b09; }.sola-contact-inner { padding-block: clamp(7rem,10vw,10rem); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem 8rem; }.sola-contact-title h2 { font-size: clamp(3.3rem,5vw,6.3rem); }.sola-contact-details { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; }.sola-contact-details > div { padding-top: 1rem; border-top: 1px solid var(--sola-line); }.sola-contact-details > div:last-child { grid-column: 1/-1; }.sola-contact-details span { color: var(--sola-red); font-size: .62rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }.sola-contact-details p { color: rgba(240,232,219,.67); line-height: 1.7; }.sola-contact-details strong,.sola-contact-details a { color: var(--sola-paper); }.sola-contact-actions { grid-column: 2; display: flex; align-items: center; gap: 2rem; }
.sola-footer { min-height: 150px; padding: 2rem 3.5rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; background: var(--sola-red); color: #fff; }.sola-footer-brand { display: flex; flex-direction: column; line-height: 1; }.sola-footer-brand span { font-size: 2.1rem; font-weight: 850; letter-spacing: .25em; }.sola-footer-brand small { margin-top: .42rem; font-family: "Noto Serif JP",serif; font-size: .58rem; letter-spacing: .16em; }.sola-footer-links { display: flex; gap: 1.4rem; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.sola-footer > p { justify-self: end; margin: 0; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }

/* ================================================================
   MANGA HALFTONE au-dessus des fonds
   ================================================================ */
.sola-hero-halftone,
.sola-section-dots {
  --sola-dot-shift: 0px;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.sola-hero-halftone > i,
.sola-section-dots > i {
  --dot-rotate: 0deg;
  position: absolute;
  display: block;
  width: min(34vw, 510px);
  aspect-ratio: 1;
  color: var(--sola-dot-paper);
  background-image: radial-gradient(circle, currentColor 0 3.2px, transparent 3.7px);
  background-size: 19px 19px;
  opacity: .7;
  transform: translate3d(0, var(--sola-dot-shift), 0) rotate(var(--dot-rotate));
  transform-origin: center;
  will-change: transform;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 23%, rgba(0,0,0,.9) 38%, transparent 67%);
  mask-image: radial-gradient(ellipse at center, #000 0 23%, rgba(0,0,0,.9) 38%, transparent 67%);
}
.sola-hero-halftone > i::before,
.sola-section-dots > i::before,
.sola-hero-halftone > i::after,
.sola-section-dots > i::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-image: radial-gradient(circle, currentColor 0 1.7px, transparent 2.15px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 25%, #000 44%, transparent 74%);
  mask-image: radial-gradient(ellipse at center, transparent 0 25%, #000 44%, transparent 74%);
}
.sola-hero-halftone > i::before,
.sola-section-dots > i::before { inset: -20%; opacity: .88; }
.sola-hero-halftone > i::after,
.sola-section-dots > i::after {
  inset: -42%;
  background-image: radial-gradient(circle, currentColor 0 .75px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: .7;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 33%, #000 54%, transparent 77%);
  mask-image: radial-gradient(ellipse at center, transparent 0 33%, #000 54%, transparent 77%);
}

/* Le canvas et la vidéo restent sous la trame; le contenu reste au-dessus. */
.sola-hero-halftone { z-index: 0; }
.sola-hero-halftone > i:first-child {
  --dot-rotate: -13deg;
  left: -10%;
  bottom: -24%;
  width: min(56vw, 820px);
  color: rgba(240,232,219,.21);
  opacity: .82;
}
.sola-hero-halftone > i:last-child {
  --dot-rotate: 17deg;
  top: 5%;
  right: -3%;
  width: min(34vw, 510px);
  color: rgba(214,47,37,.36);
  opacity: .72;
}
.sola-hero-inner { position: relative; z-index: 2; }
.sola-hero-meta,
.sola-scroll-cue { z-index: 2; }

/* Chaque éran reçoit une composition differente, pas un filtre répétée. */
.sola-manifesto,
.sola-signatures,
.sola-universe,
.sola-bubble,
.sola-menu,
.sola-social,
.sola-contact { position: relative; isolation: isolate; }
.sola-manifesto > :not(.sola-section-dots):not(.sola-manifesto-neon),
.sola-signatures > :not(.sola-section-dots),
.sola-menu > :not(.sola-section-dots):not(.sola-menu-tabs),
.sola-universe-inner,
.sola-bubble-inner,
.sola-social-inner,
.sola-contact-inner { position: relative; z-index: 1; }
.sola-section-dots > i:last-child { color: var(--sola-dot-red); }
.sola-section-dots.is-universe > i:first-child,
.sola-section-dots.is-bubble > i:first-child { color: var(--sola-dot-ink); }

.sola-section-dots.is-manifesto > i:first-child { --dot-rotate: -18deg; top: 8%; left: -13%; width: min(42vw,620px); }
.sola-section-dots.is-manifesto > i:last-child { --dot-rotate: 9deg; right: 2%; bottom: 2%; width: min(23vw,350px); }
.sola-section-dots.is-signatures > i:first-child { --dot-rotate: 14deg; top: 8%; right: -11%; width: min(38vw,560px); opacity: .46; }
.sola-section-dots.is-signatures > i:last-child { --dot-rotate: -9deg; left: 21%; bottom: -15%; width: min(25vw,390px); opacity: .54; }
.sola-section-dots.is-universe > i:first-child { --dot-rotate: -8deg; left: -8%; bottom: -9%; width: min(40vw,610px); opacity: .68; }
.sola-section-dots.is-universe > i:last-child { --dot-rotate: 15deg; top: -7%; right: 4%; width: min(25vw,380px); opacity: .44; }
.sola-section-dots.is-bubble > i:first-child { --dot-rotate: 10deg; top: -7%; left: 4%; width: min(34vw,510px); opacity: .48; }
.sola-section-dots.is-bubble > i:last-child { --dot-rotate: -15deg; right: -7%; bottom: -12%; width: min(43vw,650px); opacity: .46; }
.sola-section-dots.is-menu > i:first-child { --dot-rotate: -11deg; top: 5%; left: -11%; width: min(35vw,530px); opacity: .48; }
.sola-section-dots.is-menu > i:last-child { --dot-rotate: 12deg; right: -10%; bottom: 4%; width: min(42vw,630px); opacity: .54; }
.sola-section-dots.is-social > i:first-child { --dot-rotate: 8deg; top: -18%; right: 16%; width: min(30vw,460px); opacity: .45; }
.sola-section-dots.is-social > i:last-child { --dot-rotate: -12deg; left: -8%; bottom: -26%; width: min(36vw,540px); opacity: .5; }
.sola-section-dots.is-contact > i:first-child { --dot-rotate: -6deg; top: 7%; left: 33%; width: min(27vw,410px); opacity: .42; }
.sola-section-dots.is-contact > i:last-child { --dot-rotate: 17deg; right: -9%; bottom: -24%; width: min(38vw,570px); opacity: .55; }

/* Les détails manga continuent sur quelques composants-clées. */
.sola-marquee { position: relative; }
.sola-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(8,7,6,.22) 0 1px, transparent 1.4px);
  background-size: 8px 8px;
  opacity: .42;
  pointer-events: none;
}
.sola-marquee-track { position: relative; z-index: 1; }
.sola-ramen-copy { position: relative; overflow: hidden; }
.sola-ramen-copy::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 145px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(214,47,37,.23) 0 1.35px, transparent 1.8px);
  background-size: 9px 9px;
  opacity: .55;
  transform: rotate(-12deg);
  -webkit-mask-image: radial-gradient(circle, #000 15%, transparent 70%);
  mask-image: radial-gradient(circle, #000 15%, transparent 70%);
}
.sola-ramen-copy > * { position: relative; z-index: 1; }
.sola-manga-panel.is-red::after {
  inset: -18%;
  background-image: radial-gradient(circle, rgba(8,7,6,.3) 0 3px, transparent 3.6px);
  background-size: 18px 18px;
  transform: rotate(-10deg);
  -webkit-mask-image: radial-gradient(ellipse at 20% 75%, #000 4%, rgba(0,0,0,.8) 38%, transparent 68%);
  mask-image: radial-gradient(ellipse at 20% 75%, #000 4%, rgba(0,0,0,.8) 38%, transparent 68%);
}
.sola-manga-panel.is-paper::before {
  inset: -12%;
  background-image: radial-gradient(circle, rgba(8,7,6,.4) 0 1.5px, transparent 2px);
  background-size: 10px 10px;
  opacity: .42;
  transform: rotate(8deg);
  -webkit-mask-image: radial-gradient(ellipse at 72% 35%, #000 4%, rgba(0,0,0,.8) 36%, transparent 70%);
  mask-image: radial-gradient(ellipse at 72% 35%, #000 4%, rgba(0,0,0,.8) 36%, transparent 70%);
}
.sola-bubble-type::before {
  content: "";
  position: absolute;
  left: -11%;
  bottom: -15%;
  width: 70%;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(8,7,6,.28) 0 2.6px, transparent 3.1px);
  background-size: 16px 16px;
  transform: rotate(11deg);
  -webkit-mask-image: radial-gradient(circle at center, #000 8%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 8%, transparent 70%);
}
.sola-gallery-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -10%;
  right: -8%;
  width: 52%;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(240,232,219,.34) 0 1.5px, transparent 2px);
  background-size: 10px 10px;
  transform: rotate(14deg);
  -webkit-mask-image: radial-gradient(circle, #000 5%, transparent 70%);
  mask-image: radial-gradient(circle, #000 5%, transparent 70%);
  pointer-events: none;
}
.sola-gallery-frame::after { z-index: 2; }
.sola-menu-panel { position: relative; overflow: hidden; }
.sola-menu-panel::before {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 250px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(214,47,37,.22) 0 1.6px, transparent 2.1px);
  background-size: 11px 11px;
  transform: rotate(-12deg);
  -webkit-mask-image: radial-gradient(circle, #000 7%, transparent 72%);
  mask-image: radial-gradient(circle, #000 7%, transparent 72%);
  pointer-events: none;
}
.sola-menu-panel > * { position: relative; z-index: 1; }
.sola-social-card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -30px;
  width: 145px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(214,47,37,.42) 0 1.4px, transparent 1.9px);
  background-size: 9px 9px;
  transform: rotate(16deg);
  -webkit-mask-image: radial-gradient(circle, #000 8%, transparent 72%);
  mask-image: radial-gradient(circle, #000 8%, transparent 72%);
  pointer-events: none;
}
.sola-social-card > span,
.sola-social-card > small { position: relative; z-index: 1; }
.sola-social-card > i,
.sola-social-card > b { z-index: 1; }
.sola-footer { position: relative; overflow: hidden; }
.sola-footer::before {
  content: "";
  position: absolute;
  top: -95px;
  right: 8%;
  width: 290px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,.3) 0 1.6px, transparent 2.1px);
  background-size: 11px 11px;
  transform: rotate(-14deg);
  -webkit-mask-image: radial-gradient(circle, #000 6%, transparent 70%);
  mask-image: radial-gradient(circle, #000 6%, transparent 70%);
}
.sola-footer > * { position: relative; z-index: 1; }

/* REVEAL */
.sola-reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease,transform .8s cubic-bezier(.2,.75,.2,1); }.sola-reveal.is-visible { opacity: 1; transform: none; }.sola-ramen-card:nth-child(2).sola-reveal { transition-delay: .1s; }.sola-ramen-card:nth-child(3).sola-reveal { transition-delay: .2s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  :root { --sola-shell: min(100% - 3rem,1380px); }
  .sola-nav-links { gap: 1rem; }.sola-nav-links a { font-size: .63rem; }
  .sola-manifesto { grid-template-columns: .7fr 3fr .6fr; }
  .sola-universe-art { min-height: 560px; }
  .sola-menu-gallery,.sola-menu-panel { min-height: 570px; }.sola-gallery-frame { height: 510px; }
  .sola-social-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 820px) {
  :root { --sola-shell: min(100% - 2rem,1380px); --sola-nav-bottom: 78px; }
  .sola-nav { top: .6rem; right: .6rem; bottom: auto; left: .6rem; min-height: 4.2rem; padding: .6rem .7rem .6rem 1rem; grid-template-columns: 1fr auto; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .sola-nav::before { content: ""; position: absolute; inset: 0; z-index: 0; border: 1px solid rgba(255,255,255,.09); background: rgba(8,7,6,.8); opacity: 0; pointer-events: none; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: opacity .35s ease; }
  .sola-nav.is-scrolled { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }.sola-nav.is-scrolled::before { opacity: 1; }
  .sola-nav-links,.sola-nav-order { display: none; }.sola-menu-toggle,.sola-mobile-menu { display: flex; }
  .sola-hero-inner { min-height: 100svh; padding: 8.5rem 0 7rem; }.sola-hero h1 { font-size: clamp(3.5rem,13.8vw,6.6rem); }.sola-hero-mark { right: 5%; bottom: 12%; }.sola-scroll-cue { display: none; }
  .sola-hero-shade { background: linear-gradient(90deg,rgba(8,7,6,.86),rgba(8,7,6,.58)),linear-gradient(0deg,rgba(8,7,6,.74),transparent 45%); }
  .sola-manifesto { min-height: auto; padding-inline: 1rem; grid-template-columns: 1fr; gap: 3rem; border: 0; }.sola-manifesto-copy > p:last-child { margin-left: 0; }.sola-manifesto-seal { position: absolute; right: 0; bottom: 2rem; opacity: .28; font-size: 3.5rem; }
  .sola-manifesto-neon { inset: 1rem 0; }.sola-ghost-sign.is-manga,.sola-ghost-sign.is-bars { display: none; }.sola-ghost-sign.is-ramen { top: 2%; right: 0; }.sola-ghost-sign.is-sola { left: 0; bottom: 18%; }.sola-ghost-sign.is-94 { right: 12%; bottom: 2%; }
  .sola-section-heading,.sola-menu-heading { flex-direction: column; align-items: start; gap: 1.3rem; }.sola-ramen-grid { grid-template-columns: 1fr; }.sola-ramen-card:nth-child(2),.sola-ramen-card:nth-child(2):hover { transform: none; }.sola-ramen-photo { aspect-ratio: 1.25; }
  .sola-universe-inner,.sola-bubble-inner { grid-template-columns: 1fr; }.sola-universe-copy { order: 0; }.sola-universe-art { order: 1; min-height: 620px; }.sola-bubble-copy { order: -1; }.sola-bubble-art { min-height: 520px; }
  .sola-menu-tabs { margin-top: 2.5rem; }.sola-tab-arrow { width: 3.2rem; }.sola-menu-tab { min-width: 145px; }.sola-menu-stage { grid-template-columns: 1fr; }.sola-menu-gallery,.sola-menu-panel { min-height: auto; }.sola-gallery-frame { height: auto; aspect-ratio: 1; }
  .sola-social-links { grid-template-columns: 1fr; }.sola-social-card { min-height: 190px; }
  .sola-contact-inner { grid-template-columns: 1fr; gap: 3rem; }.sola-contact-actions { grid-column: 1; }
  .sola-footer { padding: 2.5rem 1.5rem; grid-template-columns: 1fr auto; }.sola-footer > p { grid-column: 1/-1; justify-self: start; }
  .sola-hero-halftone > i:first-child { left: -34%; bottom: -10%; width: 105vw; opacity: .68; }
  .sola-hero-halftone > i:last-child { top: 16%; right: -30%; width: 72vw; opacity: .58; }
  .sola-section-dots > i { width: min(68vw,460px); opacity: .42; }
  .sola-section-dots > i:last-child { width: min(48vw,330px); }
  .sola-section-dots.is-signatures > i:last-child,
  .sola-section-dots.is-menu > i:first-child,
  .sola-section-dots.is-contact > i:first-child { display: none; }
  .sola-gallery-frame::before { width: 68%; opacity: .75; }
  .sola-hero-mark span { font-size: 1.6rem; }.sola-hero-mark small { font-size: .8rem; }
}

@media (max-width: 520px) {
  .sola-brand-main { font-size: 1.25rem; }.sola-hero h1 { font-size: clamp(3rem,14vw,4.8rem); }.sola-hero-lead { font-size: .95rem; }.sola-hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }.sola-hero-actions .sola-text-link { align-self: flex-start; }.sola-hero-meta { position: static; padding: 1.3rem 1rem; flex-wrap: wrap; border-top: 1px solid var(--sola-line); }
  .sola-manifesto h2,.sola-section-heading h2,.sola-universe-copy h2,.sola-bubble-copy h2,.sola-menu-heading h2,.sola-social-copy h2,.sola-contact-title h2 { font-size: clamp(2.7rem,13.4vw,4.2rem); }
  .sola-universe-art { min-height: 510px; grid-template-columns: .68fr 1.32fr; }.sola-manga-panel.is-red { padding: .8rem; }.sola-manga-panel.is-red span { font-size: 3.8rem; }.sola-manga-panel.is-dark { padding: 1rem; }.sola-art-placeholder { min-height: 190px; }.sola-art-placeholder > img { width: 132%; height: 132%; }.sola-letter-grid { width: 110%; margin-inline: -5%; }.sola-letter-grid i { min-height: 112px; font-size: 2.8rem; }.sola-manga-panel.is-dark > strong { font-size: 2.35rem; }.sola-manga-panel.is-paper { flex-direction: column; }.sola-manga-panel.is-paper b { font-size: 4.7rem; }
  .sola-ghost-sign.is-sola { display: none; }.sola-ghost-sign.is-ramen { right: -1rem; }.sola-ghost-sign.is-94 { right: 3%; width: 70px; }
  .sola-bubble-art { min-height: 420px; }.sola-bubble-type { inset: 4% 5% 4% 2%; }.sola-bubble-type strong { font-size: 4.1rem; }
  .sola-menu-tabs { grid-template-columns: 1fr; }.sola-tab-arrow { display: none; }.sola-menu-panel { padding: 1rem; }.sola-menu-panel-head > span { display: none; }.sola-menu-panel-head h3 { font-size: 1.35rem; }
  .sola-contact-details { grid-template-columns: 1fr; gap: 1.5rem; }.sola-contact-details > div:last-child { grid-column: auto; }.sola-contact-actions { flex-direction: column; align-items: stretch; }
  .sola-footer { grid-template-columns: 1fr; gap: 1.7rem; }.sola-footer-links { flex-wrap: wrap; }
  .sola-hero-halftone > i:first-child { left: -52%; width: 135vw; opacity: .58; }
  .sola-hero-halftone > i:last-child { right: -48%; width: 94vw; opacity: .5; }
  .sola-section-dots > i::after { display: none; }
  .sola-section-dots.is-manifesto > i:first-child,
  .sola-section-dots.is-universe > i:first-child,
  .sola-section-dots.is-bubble > i:last-child,
  .sola-section-dots.is-social > i:last-child,
  .sola-section-dots.is-contact > i:last-child { width: 92vw; }
  .sola-ramen-copy::after { opacity: .38; }
  .sola-social-card::after { opacity: .65; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.sola-intro-active { overflow: auto; }
  .sola-intro { display: none; }
  .sola-marquee-track { animation: none; transform: none; }
  .sola-hero-copy,.sola-reveal { opacity: 1; transform: none; }
  .sola-ghost-sign { animation: none; opacity: .22; }
  .sola-hero-halftone > i,.sola-section-dots > i { transform: rotate(var(--dot-rotate)); will-change: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 霓虹灯招牌大小补丁 */
/* 桌面端: 稍微缩小 */
.sola-art-placeholder > img {
  width: 132%;
  height: 132%;
}

/* 平板与移动端: 放大并稍微下移 */
@media (max-width: 820px) {
  .sola-art-placeholder {
    min-height: 340px;
  }

  .sola-art-placeholder > img {
    top: 56%;
    width: 172%;
    height: 172%;
  }
}

/* 更窄的手机屏幕 */
@media (max-width: 520px) {
  .sola-art-placeholder {
    min-height: 230px;
  }

  .sola-art-placeholder > img {
    top: 75%!important;
    width: 185%;
    height: 185%;
  }
}