:root {
  --ink: #09070a;
  --ink-soft: #141116;
  --paper: #f7f3f5;
  --paper-dim: #d7cfd3;
  --pink: #ff3d8d;
  --red: #df1f38;
  --gold: #d9b86c;
  --mint: #91e8c8;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(9, 7, 10, 0.14);
  --header-height: 74px;
  --max: 1240px;
  color-scheme: dark;
  font-family: Inter, "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: var(--ink);
  color: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--ink); color: var(--paper); letter-spacing: 0; }
body.gate-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
button { color: inherit; }
main { overflow: clip; }
[hidden] { display: none !important; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; padding: 12px 18px; background: var(--paper); color: var(--ink); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.age-gate {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px;
  background: rgba(9, 7, 10, 0.96); transition: opacity .35s ease, visibility .35s ease;
}
.age-gate::before { content: ""; position: absolute; inset: 0; background: url("assets/generated/hero-main.png") center / cover; opacity: .13; }
.age-gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-card { position: relative; width: min(100%, 480px); padding: 44px; border: 1px solid var(--line); border-radius: 6px; background: rgba(15, 12, 16, .94); text-align: center; }
.age-card h2 { margin: 10px 0 12px; font-size: 34px; }
.age-card p:not(.eyebrow) { color: var(--paper-dim); line-height: 1.8; }

.global-header {
  position: sticky; top: 0; z-index: 100; min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 12px max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid transparent;
  background: rgba(9, 7, 10, .82); backdrop-filter: blur(18px); transition: border-color .2s, background .2s;
}
.global-header.is-scrolled { border-color: var(--line); background: rgba(9, 7, 10, .96); }
.brand { display: inline-flex; flex-direction: column; flex: 0 0 auto; line-height: 1; }
.brand-kana { color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.brand strong { margin-top: 6px; font-size: 24px; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 3px; }
.main-nav a { position: relative; padding: 11px 12px; border-radius: 5px; color: var(--paper-dim); font-size: 13px; font-weight: 800; white-space: nowrap; transition: color .2s, background .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--paper); background: rgba(255,255,255,.08); }
.main-nav a.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--pink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 5px; background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s; }

.eyebrow { margin: 0; color: var(--pink); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker { display: inline-flex; gap: 8px; align-items: center; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
p { line-height: 1.85; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 5px; font-weight: 900; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--pink); color: #16050c; }
.btn.primary:hover { background: #ff6cab; }
.btn.dark { background: var(--ink); color: var(--paper); }
.btn.ghost { border-color: var(--line); background: rgba(9,7,10,.45); color: var(--paper); }
.btn.light { background: var(--paper); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: none; color: inherit; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.text-link::after { content: "→"; font-size: 16px; }
.icon-link { display: inline-flex; min-height: 42px; align-items: center; gap: 8px; font-weight: 800; }
.icon-link::after { content: "→"; color: var(--pink); }

.hero { position: relative; min-height: min(790px, calc(100svh - var(--header-height) - 38px)); display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: end; padding: 80px max(28px, calc((100vw - var(--max)) / 2)) 68px; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: rgba(6,4,7,.44); box-shadow: inset 0 -280px 180px rgba(6,4,7,.78), inset 420px 0 220px rgba(6,4,7,.36); }
.hero-copy { max-width: 760px; }
.hero-copy h1 { max-width: 720px; margin: 14px 0 20px; font-size: 64px; font-weight: 900; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 0; color: #eee6e9; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-status { align-self: end; margin-left: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: rgba(9,7,10,.78); backdrop-filter: blur(16px); }
.hero-status-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-status-head span { color: var(--mint); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.hero-status-head time { color: var(--paper-dim); font-size: 12px; }
.hero-status [data-home-schedule] { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.hero-status [data-home-schedule] span { color: var(--pink); font-weight: 900; }
.hero-status [data-home-schedule] strong { font-size: 22px; }
.home-casts { display: grid; gap: 8px; }
.hero-status > .text-link { margin-top: 20px; color: var(--paper); }

.notice-strip { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 18px; padding: 8px 20px; background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 800; }
.notice-strip span { color: var(--red); }
.notice-strip a { text-decoration: underline; text-underline-offset: 3px; }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: 92px 28px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 430px); gap: 40px; align-items: end; margin-bottom: 40px; }
.section-heading h2 { margin: 8px 0 0; font-size: 42px; }
.section-heading > p { margin: 0; color: #746d71; }
.section-heading.light > p { color: var(--paper-dim); }

.quick-nav { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); width: min(calc(100% - 40px), 920px); margin: -28px auto 0; border: 1px solid var(--dark-line); border-radius: 6px; background: var(--paper); color: var(--ink); box-shadow: 0 18px 60px rgba(0,0,0,.25); }
.quick-nav a { display: flex; min-height: 82px; align-items: center; justify-content: center; gap: 12px; padding: 16px; border-right: 1px solid var(--dark-line); font-weight: 900; }
.quick-nav a:last-child { border-right: 0; }
.quick-nav a span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 13px; }
.quick-nav a:hover { background: #efe8eb; }

.today-band { background: var(--paper); color: var(--ink); }
.today-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 60px; }
.today-title h2 { margin: 10px 0 20px; font-size: 48px; }
.today-title p { color: #6a6266; }
.today-title .btn { margin-top: 12px; }
.today-cast-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-content: start; }
.cast-mini { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 14px; min-height: 72px; padding: 7px; border: 1px solid var(--dark-line); border-radius: 5px; background: #fff; transition: transform .2s, border-color .2s; }
.cast-mini:hover { transform: translateY(-2px); border-color: var(--pink); }
.cast-mini img { width: 58px; height: 58px; border-radius: 4px; object-fit: cover; }
.cast-mini span { display: flex; min-width: 0; flex-direction: column; }
.cast-mini strong { font-size: 17px; }
.cast-mini small { margin-top: 4px; color: #766f72; font-size: 11px; }
.hero-status .cast-mini { border-color: var(--line); background: rgba(255,255,255,.07); }
.hero-status .cast-mini small { color: var(--paper-dim); }

.store-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.store-tile { position: relative; min-height: 560px; overflow: hidden; border-radius: 6px; isolation: isolate; }
.store-tile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.store-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(9,7,10,.33); box-shadow: inset 0 -330px 180px rgba(9,7,10,.82); }
.store-tile:hover img { transform: scale(1.035); }
.store-tile-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 38px; }
.store-tile-copy span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.store-tile-copy h3 { margin: 8px 0 12px; font-size: 52px; }
.store-tile-copy p { max-width: 520px; margin: 0 0 18px; color: var(--paper-dim); }

.interior-band { min-height: 520px; display: grid; align-items: center; margin: 0; background: url("assets/generated/interior-main.png") center / cover; }
.interior-copy { width: min(calc(100% - 56px), var(--max)); margin: 0 auto; }
.interior-copy > div { max-width: 520px; padding: 38px; border-left: 4px solid var(--pink); background: rgba(9,7,10,.86); }
.interior-copy h2 { margin: 10px 0 14px; font-size: 38px; }
.interior-copy p { color: var(--paper-dim); }

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.event-list { display: grid; gap: 26px; }
.event-story { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); min-height: 350px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.event-grid .event-story { grid-template-columns: 1fr; }
.event-visual { position: relative; min-height: 300px; overflow: hidden; }
.event-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.event-visual:hover img { transform: scale(1.035); }
.event-visual > span { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: var(--paper); color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.event-story > div { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.event-story small { color: var(--pink); font-weight: 900; }
.event-story h2 { margin: 9px 0 12px; font-size: 28px; }
.event-story p { margin: 0 0 18px; color: var(--paper-dim); }

.blog-grid, .blog-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.blog-card.featured { grid-column: span 2; }
.blog-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card.featured .blog-image { aspect-ratio: 16 / 8; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-image:hover img { transform: scale(1.035); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; color: var(--paper-dim); font-size: 11px; font-weight: 800; }
.blog-meta span { padding: 5px 8px; background: var(--red); color: #fff; }
.blog-body h2 { margin: 16px 0 10px; font-size: 22px; }
.blog-body h2 a:hover { color: var(--pink); }
.blog-body > p { margin: 0; color: var(--paper-dim); }
.blog-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--paper-dim); font-size: 12px; }

.visit-band { background: var(--gold); color: var(--ink); }
.visit-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; }
.visit-layout h2 { margin: 8px 0 16px; font-size: 42px; }
.visit-address { font-size: 19px; font-weight: 800; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.visit-details { display: grid; gap: 1px; align-content: center; background: rgba(9,7,10,.18); }
.visit-details div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 18px; background: rgba(247,243,245,.7); }
.visit-details span { font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.visit-details strong { text-align: right; }

.compact-hero { width: min(100%, var(--max)); margin: 0 auto; padding: 96px 28px 58px; }
.compact-hero h1 { max-width: 880px; margin: 12px 0 18px; font-size: 54px; }
.compact-hero > p:last-child { max-width: 680px; margin: 0; color: var(--paper-dim); }
.page-hero { position: relative; min-height: 640px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); align-items: stretch; }
.page-hero > img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.page-hero > div { display: flex; flex-direction: column; justify-content: center; padding: 64px max(36px, calc((100vw - var(--max)) / 2)); padding-left: 64px; background: var(--ink-soft); }
.page-hero h1 { margin: 10px 0 18px; font-size: 72px; }
.page-hero p:not(.eyebrow) { max-width: 520px; color: var(--paper-dim); }
.page-hero .hero-actions { margin-top: 24px; }
.page-hero.milky-page > div { border-top: 4px solid var(--pink); }
.page-hero.pocky-page > div { border-top: 4px solid var(--red); }

.filter-row, .cast-toolbar, .schedule-tools { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 30px; padding-bottom: 30px; }
.filter { min-width: 92px; min-height: 42px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 4px; background: transparent; font-size: 12px; font-weight: 900; }
.filter:hover, .filter.active { border-color: var(--pink); background: var(--pink); color: var(--ink); }

.cast-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; width: min(100%, var(--max)); margin: 0 auto; padding: 18px 28px 100px; }
.cast-card { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.cast-portrait { position: relative; width: 100%; aspect-ratio: 4 / 5; padding: 0; overflow: hidden; border: 0; background: #19131a; }
.cast-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cast-portrait:hover img { transform: scale(1.035); }
.live-badge { position: absolute; left: 12px; bottom: 12px; display: flex; align-items: center; gap: 7px; padding: 7px 9px; background: var(--paper); color: var(--ink); font-size: 10px; font-weight: 900; }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: #00b878; box-shadow: 0 0 0 4px rgba(0,184,120,.18); }
.cast-card-body { padding: 20px; }
.cast-card-body > div:first-child { display: flex; align-items: center; justify-content: space-between; }
.store-tag { display: inline-flex; padding: 5px 8px; background: var(--pink); color: var(--ink); font-size: 10px; font-weight: 900; }
.store-tag.pocky { background: var(--red); color: #fff; }
.cast-card-body h2 { margin: 10px 0; font-size: 29px; }
.cast-card-body p { min-height: 96px; margin: 0; color: var(--paper-dim); font-size: 14px; }
.cast-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.cast-card-actions .icon-link { font-size: 12px; }

dialog { padding: 0; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); color: var(--paper); }
dialog::backdrop { background: rgba(5,3,6,.86); backdrop-filter: blur(8px); }
.cast-dialog { width: min(calc(100% - 28px), 940px); max-height: calc(100svh - 28px); }
.cast-dialog-grid { display: grid; grid-template-columns: .9fr 1.1fr; }
.cast-dialog-grid > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.cast-dialog-grid > div { padding: 48px; }
.cast-dialog-grid h2 { margin: 12px 0 18px; font-size: 54px; }
.cast-dialog-grid h2 small { display: block; margin-top: 6px; color: var(--paper-dim); font-size: 13px; }
.cast-message { color: var(--pink); font-weight: 800; }
.cast-dialog-grid dl { display: grid; grid-template-columns: 80px 1fr; margin: 28px 0; border-top: 1px solid var(--line); }
.cast-dialog-grid dt, .cast-dialog-grid dd { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cast-dialog-grid dt { color: var(--gold); font-size: 10px; font-weight: 900; }
.dialog-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(9,7,10,.75); font-size: 26px; }

.schedule-grid { display: grid; gap: 10px; width: min(100%, var(--max)); margin: 0 auto; padding: 10px 28px 90px; }
.shift-card { display: grid; grid-template-columns: 130px 180px minmax(0, 1fr) 76px; align-items: center; gap: 22px; min-height: 112px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.shift-card.is-today { border-color: var(--pink); box-shadow: inset 4px 0 var(--pink); }
.shift-date { display: flex; flex-direction: column; }
.shift-date span { color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.shift-date strong { margin-top: 5px; font-size: 23px; }
.shift-store { display: flex; flex-direction: column; }
.shift-store span { color: var(--gold); font-size: 12px; font-weight: 900; }
.shift-store strong { margin-top: 6px; }
.shift-casts { display: flex; flex-wrap: wrap; gap: 8px; }
.shift-casts .cast-mini { grid-template-columns: 44px 1fr; min-width: 190px; max-width: 230px; border-color: var(--line); background: rgba(255,255,255,.05); }
.shift-casts .cast-mini img { width: 40px; height: 40px; }
.shift-casts .cast-mini small { color: var(--paper-dim); }
.shift-reserve { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 900; }
.shift-reserve:hover { border-color: var(--pink); background: var(--pink); color: var(--ink); }
.empty-copy { color: var(--paper-dim); font-size: 13px; }

.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.feature-copy h2 { margin: 10px 0 18px; font-size: 42px; }
.feature-copy > p:not(.eyebrow) { color: var(--paper-dim); }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: center; }
.check-list li::before { content: "✓"; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink); font-size: 12px; font-weight: 900; }
.image-stack { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; align-items: end; }
.image-stack img { width: 100%; height: 520px; object-fit: cover; border-radius: 6px; }
.image-stack img:last-child { height: 390px; }
.poster-frame img { width: 100%; max-height: 620px; object-fit: cover; border-radius: 6px; }

.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.price-card { min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.price-card.accent { border-color: var(--pink); }
.price-card.inquiry { background: #211b17; border-color: rgba(217,184,108,.45); }
.price-card > span { color: var(--paper-dim); font-size: 12px; font-weight: 900; }
.price-card strong { display: block; margin: 32px 0 10px; font-size: 34px; }
.price-card p { margin: 0; color: var(--gold); font-weight: 800; }
.price-card small { display: block; margin-top: 8px; color: var(--paper-dim); font-weight: 500; }

.calculator, .reserve-section, .application-section { padding-top: 40px; }
.tool-shell { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--ink-soft); }
.tool-intro { padding: 40px; background: var(--paper); color: var(--ink); }
.tool-intro h2 { margin: 10px 0 14px; font-size: 36px; }
.tool-intro p { color: #665f63; }
.tool-panel { padding: 40px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--paper-dim); font-size: 12px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 4px; background: #0d0a0e; color: var(--paper); }
textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.output-box { display: grid; gap: 12px; margin-top: 18px; }
.output-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.output-actions .btn { flex: 1 1 150px; }
.calc-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.calc-result { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 14px; padding: 26px; border-left: 4px solid var(--pink); background: rgba(255,255,255,.06); }
.calc-result span { color: var(--paper-dim); }
.calc-result strong { font-size: 42px; }
.calc-result small { max-width: 220px; color: var(--paper-dim); text-align: right; }
.fine-print { color: var(--paper-dim); font-size: 12px; }

.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); padding: 1px; }
.info-strip > div { display: grid; align-content: start; gap: 8px; min-height: 180px; padding: 24px; background: var(--ink-soft); }
.info-strip span { color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.info-strip strong { line-height: 1.55; }
.info-strip button { justify-self: start; margin-top: auto; padding: 8px 0; border: 0; background: none; color: var(--gold); font-size: 12px; font-weight: 900; }
.map-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding-top: 30px; padding-bottom: 60px; }
.map-card p { margin: 0; color: var(--paper-dim); }

.recruit-lead { background: var(--paper); color: var(--ink); }
.recruit-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.recruit-card { min-height: 220px; padding: 28px; border: 1px solid var(--dark-line); border-radius: 6px; background: #fff; }
.recruit-card > span { display: inline-block; margin-bottom: 24px; color: var(--red); font-size: 11px; font-weight: 900; }
.recruit-card h2 { font-size: 26px; }
.recruit-card p { color: #675f63; }
.faq { display: grid; gap: 8px; }
.faq details { border: 1px solid var(--line); border-radius: 5px; background: var(--ink-soft); }
.faq summary { padding: 20px; font-weight: 900; cursor: pointer; }
.faq details p { margin: 0; padding: 0 20px 20px; color: var(--paper-dim); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; width: min(100%, var(--max)); margin: 0 auto; padding: 30px 28px 100px; }
.gallery-grid button { grid-column: span 4; min-height: 320px; padding: 0; overflow: hidden; border: 0; border-radius: 5px; background: var(--ink-soft); }
.gallery-grid button:first-child { grid-column: span 8; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid button:hover img { transform: scale(1.03); }
.lightbox { width: min(calc(100% - 30px), 1100px); max-height: calc(100svh - 30px); }
.lightbox img { width: 100%; max-height: calc(100svh - 100px); object-fit: contain; }
.lightbox button { position: absolute; right: 10px; top: 10px; z-index: 2; padding: 10px 14px; border: 0; background: var(--paper); color: var(--ink); font-weight: 900; }

.article-wrap { width: min(100%, 960px); margin: 0 auto; padding: 70px 28px 110px; }
.article-shell header { max-width: 780px; margin: 0 auto 42px; }
.back-link { display: inline-block; margin-bottom: 36px; color: var(--paper-dim); font-size: 12px; font-weight: 800; }
.article-shell h1 { margin: 18px 0; font-size: 50px; }
.article-shell header > p { color: var(--paper-dim); font-size: 17px; }
.article-eyecatch { width: 100%; max-height: 580px; border-radius: 6px; object-fit: cover; }
.article-content { max-width: 720px; margin: 46px auto; }
.article-content p { margin: 0 0 24px; font-size: 17px; }
.article-shell footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 720px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line); color: var(--paper-dim); }
.share-button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 4px; background: transparent; }

.footer { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding: 56px max(28px, calc((100vw - var(--max)) / 2)) 110px; border-top: 1px solid var(--line); background: #050405; }
.footer strong { font-size: 22px; }
.footer p { color: var(--paper-dim); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: start; color: var(--paper-dim); font-size: 13px; font-weight: 800; }
.footer-meta { margin-top: 26px; color: #7e777b; font-size: 11px; }
.sticky-actions { position: fixed; z-index: 90; left: 50%; bottom: 12px; display: grid; grid-template-columns: repeat(3, 1fr); width: min(calc(100% - 24px), 510px); padding: 5px; border: 1px solid var(--line); border-radius: 7px; background: rgba(9,7,10,.94); box-shadow: 0 12px 40px rgba(0,0,0,.36); backdrop-filter: blur(16px); transform: translateX(-50%); }
.sticky-actions a { display: flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 4px; font-size: 13px; font-weight: 900; }
.sticky-actions a:nth-child(2) { background: var(--pink); color: var(--ink); }
.toast { position: fixed; z-index: 400; left: 50%; bottom: 82px; min-width: 220px; padding: 13px 18px; border-radius: 5px; background: var(--paper); color: var(--ink); text-align: center; font-weight: 900; box-shadow: 0 10px 40px rgba(0,0,0,.35); transform: translateX(-50%); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; grid-template-columns: repeat(2, 1fr); padding: 10px; border: 1px solid var(--line); border-radius: 6px; background: rgba(9,7,10,.98); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 14px; }
  .hero { grid-template-columns: 1fr 300px; }
  .hero-copy h1 { font-size: 54px; }
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-list { grid-template-columns: repeat(2, 1fr); }
  .shift-card { grid-template-columns: 110px 150px 1fr 70px; }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; }
  .global-header { padding: 10px 16px; }
  .brand strong { font-size: 20px; }
  .age-card { padding: 32px 22px; }
  .age-card h2 { font-size: 28px; }
  .notice-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .hero { min-height: 690px; grid-template-columns: 1fr; align-items: end; padding: 70px 20px 28px; }
  .hero-bg img { object-position: 62% center; }
  .hero-bg::after { background: rgba(6,4,7,.44); box-shadow: inset 0 -430px 220px rgba(6,4,7,.92); }
  .hero-copy { align-self: end; }
  .hero-copy h1 { max-width: 340px; margin: 10px 0 14px; font-size: 32px; }
  .hero-copy > p:not(.eyebrow) { font-size: 14px; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .btn { flex: 1 1 145px; padding-right: 12px; padding-left: 12px; font-size: 13px; white-space: nowrap; }
  .hero-status { display: none; }
  .quick-nav { grid-template-columns: repeat(2, 1fr); margin-top: 0; width: 100%; border: 0; border-radius: 0; box-shadow: none; }
  .quick-nav a { min-height: 66px; justify-content: flex-start; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
  .section { padding: 66px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .section-heading h2 { font-size: 33px; }
  .today-layout { grid-template-columns: 1fr; gap: 28px; }
  .today-title h2 { font-size: 38px; }
  .today-cast-grid { grid-template-columns: 1fr; }
  .store-showcase { grid-template-columns: 1fr; }
  .store-tile { min-height: 480px; }
  .store-tile-copy { padding: 26px; }
  .store-tile-copy h3 { font-size: 43px; }
  .interior-band { min-height: 460px; }
  .interior-copy { width: calc(100% - 36px); }
  .interior-copy > div { padding: 26px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-story { grid-template-columns: 1fr; }
  .event-story > div { padding: 24px; }
  .blog-grid, .blog-list { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .blog-card.featured .blog-image { aspect-ratio: 16 / 10; }
  .visit-layout { grid-template-columns: 1fr; gap: 34px; }
  .visit-layout h2 { font-size: 34px; }
  .visit-address { font-size: 16px; }
  .visit-details div { grid-template-columns: 74px 1fr; }
  .compact-hero { padding: 70px 18px 38px; }
  .compact-hero h1 { font-size: 39px; }
  .page-hero { min-height: 0; grid-template-columns: 1fr; }
  .page-hero > img { min-height: 0; aspect-ratio: 4 / 4.2; }
  .page-hero > div { padding: 38px 20px 46px; }
  .page-hero h1 { font-size: 52px; }
  .cast-toolbar, .schedule-tools, .filter-row { overflow-x: auto; flex-wrap: nowrap; padding: 20px 18px; }
  .filter { flex: 0 0 auto; }
  .cast-grid { grid-template-columns: 1fr; padding: 8px 18px 72px; }
  .cast-card-body p { min-height: 0; }
  .cast-dialog-grid { grid-template-columns: 1fr; }
  .cast-dialog-grid > img { min-height: 0; max-height: 420px; }
  .cast-dialog-grid > div { padding: 28px 22px; }
  .cast-dialog-grid h2 { font-size: 42px; }
  .shift-card { grid-template-columns: 1fr auto; gap: 14px; min-height: 0; padding: 18px; }
  .shift-store { text-align: right; }
  .shift-casts { grid-column: 1 / -1; }
  .shift-casts .cast-mini { min-width: 0; max-width: none; flex: 1 1 190px; }
  .shift-reserve { grid-column: 1 / -1; width: 100%; height: 42px; border-radius: 4px; }
  .two-column { grid-template-columns: 1fr; gap: 38px; }
  .feature-copy h2 { font-size: 34px; }
  .image-stack img { height: 350px; }
  .image-stack img:last-child { height: 260px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 170px; }
  .tool-shell { grid-template-columns: 1fr; }
  .tool-intro, .tool-panel { padding: 26px 20px; }
  .form-grid, .calc-box { grid-template-columns: 1fr; }
  .form-grid .full, .calc-result { grid-column: auto; }
  .calc-result { align-items: flex-start; flex-direction: column; }
  .calc-result strong { font-size: 36px; }
  .calc-result small { text-align: left; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip > div { min-height: 150px; }
  .map-card { grid-template-columns: 1fr; }
  .map-card .btn { width: 100%; }
  .recruit-points { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; padding: 20px 18px 70px; }
  .gallery-grid button, .gallery-grid button:first-child { grid-column: auto; min-height: 280px; }
  .article-wrap { padding: 50px 18px 90px; }
  .article-shell h1 { font-size: 38px; }
  .article-shell footer { align-items: flex-start; flex-direction: column; }
  .footer { grid-template-columns: 1fr; padding: 44px 20px 100px; }
  .footer-links { gap: 14px; }
}

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