@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Jost:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-container: #eef2ee;
    --color-surface-container-low: #f6f8f6;
    --color-ink: #04202c;
    --color-ink-soft: #304040;
    --color-line: #c9d1c8;
    --color-gold: #5b7065;
    --color-accent: #5b7065;
    --color-accent-ink: #304040;
    --color-accent-soft: #e7ece6;
    --color-dark: #04202c;
    --color-dark-soft: #304040;
    --color-dark-line: #3f5850;
    --color-on-dark: #ffffff;
    --color-on-dark-soft: #c9d1c8;
    --container-max: 1200px;
    --nav-height: 76px;
    --font-sans: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-brand: "Space Grotesk", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-label: "Jost", "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    /* washi-texture temporarily disabled for a white-based design comparison */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-ink);
    font-family: var(--font-sans);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--color-accent-ink);
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.icon {
    width: 17px;
    height: 17px;
    vertical-align: -3px;
    margin-right: 8px;
    stroke-width: 1.75;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ================= TOP NAV ================= */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--color-line);
}

/* home page only: transparent, overlapping the hero photo until the user scrolls past it.
   Stays position:sticky the whole time (never toggles position) so the header always
   occupies its flow space — the negative margin-bottom pulls the hero back up underneath
   it to recreate the overlay look. Only background/color fade at the scroll threshold,
   which avoids the layout jump that a position:absolute -> sticky swap used to cause. */
.site-nav--overlay {
    position: sticky;
    top: 0;
    margin-bottom: calc(-1 * var(--nav-height));
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav--overlay .site-nav__brand {
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.site-nav--overlay .site-nav__links a {
    color: #fff;
}

.site-nav--overlay .site-nav__links a.active {
    color: #fff;
}

.site-nav--overlay .lang-switch a {
    color: rgba(255, 255, 255, 0.85);
}

.site-nav--overlay .lang-switch a.active {
    color: #fff;
}

.site-nav--overlay .menu-toggle {
    color: #fff;
}

.site-nav--overlay.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom-color: var(--color-line);
}

.site-nav--overlay.is-scrolled .site-nav__brand {
    color: var(--color-ink);
    opacity: 1;
}

.site-nav--overlay.is-scrolled .site-nav__links a {
    color: var(--color-ink-soft);
}

.site-nav--overlay.is-scrolled .site-nav__links a.active {
    color: var(--color-ink);
}

.site-nav--overlay.is-scrolled .lang-switch a {
    color: var(--color-accent);
}

.site-nav--overlay.is-scrolled .menu-toggle {
    color: var(--color-ink);
}

.site-nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-nav__brand {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--color-ink);
    flex-shrink: 0;
}

.site-nav__brand:hover {
    color: var(--color-ink);
}

.site-nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.site-nav__links a {
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-ink-soft);
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.site-nav__links a:hover {
    color: var(--color-ink);
}

.site-nav__links a.active {
    color: var(--color-ink);
    font-weight: 700;
    border-bottom-color: var(--color-gold);
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.site-nav__inquiry {
    display: none;
}

.menu-toggle {
    display: inline-flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    color: var(--color-ink);
}

.menu-toggle .icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

/* ================= MOBILE DRAWER ================= */
.drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 32, 44, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 65;
}

.drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100vh;
    height: 100svh;
    background-color: var(--color-bg);
    /* washi-texture temporarily disabled for a white-based design comparison */
    background-repeat: repeat;
    background-size: 900px;
    border-left: 1px solid var(--color-line);
    padding: 5rem 2rem 2rem;
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-ink);
    cursor: pointer;
    padding: 0.4rem;
}

.drawer__close .icon {
    width: 22px;
    height: 22px;
    margin: 0;
}

.drawer__links {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
}

.drawer__links li + li {
    border-top: 1px solid var(--color-line);
}

.drawer__links a {
    display: block;
    padding: 1rem 0.2rem;
    font-family: var(--font-brand);
    font-size: 1.25rem;
    color: var(--color-ink);
}

.drawer__links a.active {
    color: var(--color-accent-ink);
}

/* nav links (and the Inquiry button below them) slide/fade in once the
   drawer has finished opening, staggered one after another */
.drawer__links li,
.drawer > .btn {
    opacity: 0;
    transform: translateX(18px);
}

.drawer.is-open .drawer__links li,
.drawer.is-open > .btn {
    animation: drawerItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.drawer.is-open .drawer__links li:nth-child(1) { animation-delay: 0.08s; }
.drawer.is-open .drawer__links li:nth-child(2) { animation-delay: 0.14s; }
.drawer.is-open .drawer__links li:nth-child(3) { animation-delay: 0.2s; }
.drawer.is-open .drawer__links li:nth-child(4) { animation-delay: 0.26s; }
.drawer.is-open .drawer__links li:nth-child(5) { animation-delay: 0.32s; }
.drawer.is-open .drawer__links li:nth-child(6) { animation-delay: 0.38s; }
.drawer.is-open > .btn { animation-delay: 0.44s; }

@keyframes drawerItemIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .drawer__links li,
    .drawer > .btn {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

body.menu-open {
    overflow: hidden;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary,
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-primary,
.btn {
    background: var(--color-dark);
    color: var(--color-on-dark);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover,
.btn:hover {
    background: var(--color-accent-ink);
    border-color: var(--color-accent-ink);
    color: #fff;
}

.btn:disabled {
    background: var(--color-surface-container);
    border-color: var(--color-line);
    color: var(--color-ink-soft);
    cursor: default;
    opacity: 0.7;
}

.btn-secondary {
    background: transparent;
    color: var(--color-ink);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-accent-ink);
    border-color: var(--color-accent-ink);
    color: #fff;
}

.btn-secondary--on-dark {
    color: var(--color-on-dark);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary--on-dark:hover {
    background: var(--color-accent-ink);
    border-color: var(--color-accent-ink);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 0.2rem;
}

.link-arrow:hover {
    color: var(--color-accent-ink);
    border-color: var(--color-accent-ink);
}

.link-arrow .icon {
    width: 14px;
    height: 14px;
    margin: 0;
}

.link-arrow--on-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.link-arrow--on-dark:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* ================= SCHEDULE PANEL (home: consolidated dark performance-schedule card) ================= */
.schedule-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    padding: clamp(1.2rem, 3vw, 1.8rem);
}

.schedule-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--color-line);
}

.schedule-panel__kicker {
    color: var(--color-gold);
}

.schedule-panel__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--color-ink);
    margin: 0;
}

.schedule-panel__empty {
    color: var(--color-ink-soft);
    margin: 0;
}

.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.25rem;
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-line);
    transition: background 0.15s ease, padding-left 0.2s ease;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background: var(--color-surface-container-low);
    padding-left: 0.7rem;
}

.schedule-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--color-dark);
    color: var(--color-on-dark);
}

.schedule-item__day {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
}

.schedule-item__month {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--color-on-dark-soft);
    margin-top: 0.1rem;
}

.schedule-item__body {
    flex: 1;
    min-width: 0;
}

.schedule-item__body h3 {
    margin: 0;
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-item__body p {
    display: flex;
    align-items: center;
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: var(--color-ink-soft);
}

.schedule-item__poster {
    flex-shrink: 0;
    width: 54px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.schedule-item__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.schedule-item:hover .schedule-item__poster img {
    transform: scale(1.06);
}

.schedule-item__arrow {
    flex-shrink: 0;
    color: var(--color-ink-soft);
    display: inline-flex;
    transition: transform 0.2s ease, color 0.15s ease;
}

.schedule-item__arrow .icon {
    margin: 0;
}

.schedule-item:hover .schedule-item__arrow {
    transform: translateX(3px);
    color: var(--color-gold);
}

/* ================= SHARED TEXT ================= */
.kicker {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.45rem;
}

/* ================= PAGE HEADER (plain, centered) ================= */
.page-header {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0 2.4rem;
    text-align: center;
}

.page-header__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--color-ink);
    margin: 0 0 1.1rem;
}

.page-header__lead {
    font-size: 1.05rem;
    color: var(--color-ink-soft);
    margin: 0;
}

.page-title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.9rem;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--color-line);
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 56px;
    height: 2px;
    background: var(--color-gold);
}

.page-lead {
    font-size: 1.02rem;
    color: var(--color-ink-soft);
    max-width: 42em;
    margin: 0 0 1rem;
}

.meta {
    font-size: 0.82rem;
    color: var(--color-ink-soft);
    letter-spacing: 0.04em;
    margin: -1.5rem 0 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-line);
}

.section {
    margin: 2.4rem 0;
}

.section__title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.25;
    margin: 0 0 1.2rem;
    color: var(--color-ink);
}

.section__title .icon {
    color: var(--color-accent);
}

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--color-line);
}

/* home: blog teaser — header and list share one card background/border,
   with the header's own border-bottom doubling as the internal divider */
.news-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    padding: 0.9rem 0.9rem 0;
}

.news-card .section__head {
    margin-bottom: 0;
}

.news-card .section__title {
    margin-bottom: 0.4rem;
}

.news-card .news-list {
    background: none;
    border: none;
}

.news-card .news-item {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

.news-card .news-item:hover {
    padding-left: 0.55rem;
}

.news-card__empty {
    padding: 1.1rem 0;
}

/* ================= HOME: HERO CINEMA (auto-crossfade + overlay) ================= */
.hero-cinema {
    position: relative;
    height: 86vh;
    height: 86svh;
    min-height: 460px;
    max-height: 820px;
    overflow: hidden;
    background: var(--color-dark);
}

/* PC and mobile hero backgrounds are independent image pools — only one
   group is shown at a time, switched by viewport width */
.hero-cinema__slides--mobile {
    display: none;
}

@media (max-width: 699px) {
    .hero-cinema__slides--pc {
        display: none;
    }

    .hero-cinema__slides--mobile {
        display: block;
    }
}

.hero-cinema__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    filter: grayscale(10%) sepia(8%);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-cinema__slide.is-active {
    opacity: 1;
}

.hero-cinema::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 32, 44, 0.28) 0%, rgba(4, 32, 44, 0.12) 30%, rgba(4, 32, 44, 0.62) 66%, rgba(4, 32, 44, 0.96) 100%);
    z-index: 1;
}

.hero-cinema__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2rem 0 1.4rem;
    color: #fff;
}

.hero-cinema__kicker {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-cinema__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(2.1rem, 7vw, 4rem);
    line-height: 1.15;
    max-width: 15em;
    margin: 0 0 1.4rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    animation: fadeUp 0.8s 0.25s ease both;
}

.hero-cinema__cta {
    display: flex;
    width: min(760px, 62vw);
    margin: 0 auto;
    align-items: center;
    gap: 1.6rem;
    border-top: 1px solid rgba(91, 112, 101, 0.75);
    border-bottom: 1px solid rgba(91, 112, 101, 0.75);
    padding: 1.1rem 0;
    animation: fadeUp 0.8s 0.4s ease both;
}

.hero-cinema__cta-link {
    flex: 1;
    text-align: center;
    font-family: var(--font-label);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-cinema__cta-link:hover {
    color: #fff;
}

.hero-cinema__cta-divider {
    width: 1px;
    height: 1.4em;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* ================= SOCIAL RAIL (SNS links, right edge of the hero) ================= */
.social-rail {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(2rem, 10vh, 4.5rem);
    gap: 14px;
}

/* the <a> stays an ordinary (unskewed) box for layout/hit-target purposes;
   only the background shape behind the icon is sheared, so the left/right
   edges of each cell stay perfectly vertical while the top/bottom edges run
   diagonally (upper-left to lower-right), and the icon itself stays upright */
.social-rail__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 87px;
    height: 87px;
    color: #fff;
}

.social-rail__shape {
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    transform: skewY(9deg);
    transition: background 0.2s ease;
}

.social-rail__item:hover .social-rail__shape {
    background: var(--color-accent-ink);
}

.social-rail__icon {
    position: relative;
    z-index: 1;
    display: flex;
}

.social-rail__item .icon {
    width: 44px;
    height: 44px;
    margin: 0;
    stroke-width: 0;
}

/* ================= PROMO SLIDER (arrows beside the image, dots below) ================= */
.promo-slider {
    position: relative;
    width: min(760px, 62vw);
    margin: 1.1rem auto 0.3rem;
    animation: fadeUp 0.8s 0.4s ease both;
}

.promo-slider__row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-slider__track {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.promo-slider__track::-webkit-scrollbar {
    display: none;
}

.promo-slider__slide {
    flex: 0 0 50%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    aspect-ratio: 3 / 1;
    display: block;
    position: relative;
    border: 1px solid rgba(91, 112, 101, 0.5);
    background: rgba(4, 32, 44, 0.55);
    overflow: hidden;
    box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.5);
}

.promo-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
}

/* neighbouring, not-yet-active slides read as "on standby" under a dark scrim */
.promo-slider__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 3, 0.6);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.promo-slider__slide.is-active::after {
    opacity: 0;
}

.promo-slider__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.7rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
    color: #fff;
    font-family: var(--font-brand);
    font-size: 0.78rem;
    line-height: 1.3;
}

.promo-slider__arrow {
    flex: 0 0 auto;
    background: none;
    border: none;
    padding: 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.promo-slider__arrow:hover {
    color: var(--color-gold);
    transform: scale(1.15);
}

.promo-slider__arrow .icon {
    width: 20px;
    height: 20px;
    margin: 0;
    stroke-width: 2.25;
}

.promo-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.promo-slider__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-slider__dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.promo-slider__dot.is-active {
    background: var(--color-gold);
    transform: scale(1.35);
}

/* ================= BENTO GRID (home) ================= */
.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
}

.bento-card:hover {
    border-color: var(--color-gold);
}

.bento-card__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.bento-card:hover .bento-card__title {
    color: var(--color-accent-ink);
}

.bento-card__text {
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    margin: 0 0 0.9rem;
    max-width: 30em;
}

.bento-card--profile {
    background: var(--color-surface-container-low);
    justify-content: space-between;
}

.bento-card--profile__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: #fff;
    margin-bottom: 0.7rem;
}

.bento-card--profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card--dark {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-on-dark);
    min-height: 320px;
    padding: 2.4rem;
}

.bento-card--dark:hover {
    border-color: var(--color-gold);
}

.bento-card--dark .bento-card__title {
    color: #fff;
}

.bento-card--dark .bento-card__text {
    color: var(--color-on-dark-soft);
}

/* ================= TEASER CARDS (events / journal on home) ================= */
.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.teaser-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-line);
    padding: 1.6rem;
    transition: border-color 0.25s ease;
}

.teaser-card:hover {
    border-color: var(--color-gold);
}

.teaser-card__date {
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.7rem;
}

.teaser-card__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--color-ink);
    margin: 0 0 0.7rem;
    line-height: 1.4;
}

.teaser-card:hover .teaser-card__title {
    color: var(--color-accent-ink);
}

.teaser-card__meta {
    display: flex;
    align-items: center;
    color: var(--color-ink-soft);
    font-size: 0.86rem;
    margin-bottom: 1rem;
}

.teaser-card__meta .icon {
    width: 15px;
    height: 15px;
    color: var(--color-accent);
}

.teaser-card__footer {
    padding-top: 0.9rem;
    border-top: 1px solid var(--color-line);
}

.empty-note {
    color: var(--color-ink-soft);
}

/* ================= JOURNAL GRID (blog index) ================= */
.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
}

.journal-card {
    display: block;
    color: inherit;
}

/* scroll-in reveal: .reveal is added by JS only (progressive enhancement —
   elements stay fully visible if JS never runs), .is-visible is toggled once
   the element crosses into view via IntersectionObserver */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.journal-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--color-line);
    margin-bottom: 1.1rem;
    background: var(--color-surface-container);
}

.journal-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-card:hover .journal-card__img img {
    transform: scale(1.05);
}

.journal-card__date {
    font-family: var(--font-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.6rem;
}

.journal-card__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--color-ink);
    line-height: 1.4;
    margin: 0;
}

.journal-card:hover .journal-card__title {
    color: var(--color-accent-ink);
}

.journal-card--featured {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    padding: 1.6rem;
    position: relative;
}

.journal-card--featured .journal-card__img {
    aspect-ratio: 16 / 9;
}

.journal-card--featured .journal-card__title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.journal-card--featured .journal-card__excerpt {
    color: var(--color-ink-soft);
    margin: 0 0 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-card--plain {
    border: 1px solid var(--color-line);
    padding: 1.4rem;
}

.journal-card--plain .journal-card__title {
    font-size: 1.15rem;
}

.journal-card--plain .journal-card__excerpt {
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    margin: 0.6rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================= GALLERY GRID (home photo teaser) ================= */
.gallery-teaser {
    text-align: center;
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-line);
    background: rgba(239, 239, 215, 0.4);
}

.gallery-teaser .icon {
    width: 26px;
    height: 26px;
    color: var(--color-ink);
    margin: 0 auto 1rem;
}

.gallery-teaser__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin: 0 0 0.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    max-width: var(--container-max);
    margin: 2.2rem auto 0;
    padding: 0 32px;
}

.gallery-grid a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%) sepia(8%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) sepia(0%);
}

/* ================= CTA DARK BAND ================= */
.cta-dark {
    background: var(--color-dark);
    color: var(--color-on-dark);
    text-align: center;
    padding: 4rem 0;
}

.cta-dark .icon {
    width: 30px;
    height: 30px;
    color: var(--color-gold);
    margin: 0 auto 1.2rem;
}

.cta-dark__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 1rem;
}

.cta-dark__text {
    color: var(--color-on-dark-soft);
    max-width: 34em;
    margin: 0 auto 2rem;
}

/* ================= WORK: PAGE BANNER ================= */
.page-banner {
    position: relative;
    margin-bottom: 5.5rem;
}

.page-banner__frame {
    width: 100%;
    height: 34vh;
    min-height: 240px;
    max-height: 420px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-line);
    background: #fff;
}

.page-banner__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.page-banner__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 29, 14, 0) 55%, rgba(27, 29, 14, 0.35) 100%);
}

.page-banner__card {
    position: relative;
    z-index: 2;
    margin: -3rem 1.5rem 0;
    background: rgba(255, 255, 253, 0.94);
    border: 1px solid var(--color-line);
    padding: 1.8rem 2rem;
    max-width: 30em;
}

.page-banner__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin: 0 0 0.7rem;
    color: var(--color-ink);
}

.page-banner__lead {
    color: var(--color-ink-soft);
    margin: 0;
}

/* ================= PROFILE ================= */
/* ================= EVENTS: TIMELINE ================= */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline__date {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 2rem;
    color: var(--color-ink);
    line-height: 1;
}

.timeline__year {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin-top: 0.4rem;
    display: block;
}

.timeline__card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-line);
    padding: 1.8rem;
}

.timeline__card h3 {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0 0 0.7rem;
    color: var(--color-ink);
}

.timeline__card h3 a {
    color: inherit;
}

.timeline__card h3 a:hover {
    color: var(--color-accent-ink);
}

.timeline__card p {
    color: var(--color-ink-soft);
    margin: 0 0 1.2rem;
}

.timeline__card-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline__poster {
    flex-shrink: 0;
    display: block;
    width: 90px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--color-line);
    background: var(--color-surface-container);
}

.timeline__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline__card:hover .timeline__poster img {
    transform: scale(1.05);
}

.timeline__card-body {
    flex: 1;
    min-width: 0;
}

.timeline__card-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.timeline__meta {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline__meta li {
    display: flex;
    align-items: center;
    font-size: 0.86rem;
    color: var(--color-ink);
}

.timeline__meta .icon {
    color: var(--color-accent);
}

/* ================= EVENT DETAIL PAGE ================= */
.event-detail__head {
    margin-bottom: 1.8rem;
}

.event-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-detail__poster {
    border: 1px solid var(--color-line);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--color-surface-container);
}

.event-detail__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail__title {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0.5rem 0 1.2rem;
}

.event-detail__description {
    margin: 0 0 1.6rem;
}

@media (min-width: 700px) {
    .event-detail {
        grid-template-columns: 360px 1fr;
        gap: 3rem;
        align-items: start;
    }

    .event-detail--no-poster {
        grid-template-columns: 1fr;
    }
}

/* ================= MEDIA PAGE ================= */
.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.media-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-line);
    overflow: hidden;
}

.media-card__player {
    background: var(--color-dark);
}

.media-card__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.media-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.media-card__player video {
    width: 100%;
    max-height: 420px;
    display: block;
}

.media-card__audio {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
}

.media-card__audio .icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 40%;
    height: 40%;
    max-width: 140px;
    max-height: 140px;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.audio-player {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.audio-player audio {
    max-width: 220px;
}

.audio-player__toggle,
.audio-player__viz {
    display: none;
}

.audio-player.is-enhanced audio {
    display: none;
}

.audio-player.is-enhanced .audio-player__toggle {
    display: flex;
}

.audio-player.is-enhanced .audio-player__viz {
    display: flex;
}

.audio-player__toggle {
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.audio-player__toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
}

.audio-player__toggle:active {
    transform: scale(0.94);
}

.audio-player__play-icon {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--color-on-dark);
}

.audio-player__pause-icon {
    display: none;
    gap: 5px;
}

.audio-player__pause-icon span {
    width: 5px;
    height: 18px;
    border-radius: 1px;
    background: var(--color-on-dark);
}

.audio-player.is-playing .audio-player__play-icon {
    display: none;
}

.audio-player.is-playing .audio-player__pause-icon {
    display: flex;
}

.audio-player__viz {
    align-items: flex-end;
    gap: 4px;
    height: 28px;
}

.audio-player__viz span {
    width: 4px;
    height: 6px;
    border-radius: 2px;
    background: var(--color-on-dark-soft);
}

.audio-player.is-playing .audio-player__viz span {
    animation: eqBounce 1s ease-in-out infinite;
    background: var(--color-on-dark);
}

.audio-player.is-playing .audio-player__viz span:nth-child(1) { animation-delay: 0s; }
.audio-player.is-playing .audio-player__viz span:nth-child(2) { animation-delay: 0.2s; }
.audio-player.is-playing .audio-player__viz span:nth-child(3) { animation-delay: 0.4s; }
.audio-player.is-playing .audio-player__viz span:nth-child(4) { animation-delay: 0.1s; }
.audio-player.is-playing .audio-player__viz span:nth-child(5) { animation-delay: 0.3s; }

@keyframes eqBounce {
    0%, 100% { height: 6px; }
    50% { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .audio-player.is-playing .audio-player__viz span {
        animation: none;
        height: 16px;
    }
}

.media-card__body {
    padding: 1.3rem 1.5rem;
}

.media-card__type {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.media-card__body h3 {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--color-ink);
}

.media-card__body p {
    color: var(--color-ink-soft);
    margin: 0;
}

@media (min-width: 700px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= INQUIRY (contact) ================= */
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    align-items: start;
}

.inquiry-info {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    padding: 1.6rem;
}

.inquiry-info h2 {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.35rem;
    margin: 0 0 1rem;
}

.inquiry-info p {
    color: var(--color-ink-soft);
    margin: 0 0 0.9rem;
}

.inquiry-info p:last-of-type {
    margin-bottom: 0;
}

.inquiry-info__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #000;
    border: 1px solid var(--color-line);
    margin-top: 1.3rem;
    filter: grayscale(20%);
}

.inquiry-info__photo--empty {
    background: #fff;
    filter: none;
}

.inquiry-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    padding: 1.6rem;
}

/* underline-style form fields for the inquiry form */
.field {
    margin-bottom: 1.4rem;
}

.field label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    margin-bottom: 0.4rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.6rem 0;
    border: none;
    border-bottom: 1px solid var(--color-ink);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: var(--color-ink);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

/* ================= WORK: activities / lists ================= */
.activities-list {
    margin: 0.5rem 0 0;
    padding-left: 0;
    list-style: none;
}

.activities-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
    color: var(--color-ink-soft);
}

.activities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

.achievements {
    margin-top: 0.5rem;
    padding-left: 0;
    list-style: none;
}

.achievements li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.7rem;
}

.achievements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 1px;
    background: var(--color-gold);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

/* card wrapper around each thumbnail — keeps the reorder/delete controls
   below it from ever overlapping the image, regardless of image dimensions */
.photo-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 0.6rem;
    background: var(--color-surface-container-low);
}

.photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    margin: 0;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.photo-grid img:hover {
    filter: grayscale(0%);
}

/* article-style photo gallery (big viewer + thumbnail strip below), used on
   the PROFILE page. Prev/next arrows, thumbnail clicks, and left/right swipe
   on the viewer all just swap the main <img>'s src — see foot.ejs */
.profile-gallery__viewer {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--color-line);
}

.profile-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.profile-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(4, 32, 44, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.profile-gallery__arrow:hover {
    background: rgba(4, 32, 44, 0.8);
}

.profile-gallery__arrow--prev {
    left: 12px;
}

.profile-gallery__arrow--next {
    right: 12px;
}

.profile-gallery__arrow .icon {
    width: 20px;
    height: 20px;
    margin: 0;
    color: #fff;
}

.profile-gallery__thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.profile-gallery__thumb {
    flex-shrink: 0;
    width: 64px;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 2px solid transparent;
    background: #000;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.profile-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.profile-gallery__thumb:hover {
    opacity: 1;
}

.profile-gallery__thumb.is-active {
    opacity: 1;
    border-color: var(--color-gold);
}

.profile-body {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--color-line);
    padding: 1.9rem 2.1rem;
}

.profile-body p {
    white-space: pre-line;
    color: var(--color-ink-soft);
    margin: 0;
}

/* rich-text blog bodies: raw admin-authored HTML. white-space:pre-line at the
   container level keeps older, tag-free posts (plain text with literal line
   breaks) readable, while any HTML tags a newer post uses still render normally. */
.richtext {
    white-space: pre-line;
    color: var(--color-ink-soft);
}

.richtext p {
    white-space: normal;
    margin: 0 0 1.2rem;
}

.richtext h2,
.richtext h3 {
    font-family: var(--font-brand);
    font-weight: 400;
    color: var(--color-ink);
    margin: 1.8rem 0 0.9rem;
}

.richtext h2 {
    font-size: 1.5rem;
}

.richtext h3 {
    font-size: 1.2rem;
}

.richtext a {
    text-decoration: underline;
}

.richtext img {
    max-width: 100%;
    height: auto;
    margin: 1.2rem 0;
    border: 1px solid var(--color-line);
}

.richtext ul,
.richtext ol {
    margin: 0 0 1.2rem;
    padding-left: 1.4rem;
}

.richtext blockquote {
    margin: 1.2rem 0;
    padding: 0.2rem 0 0.2rem 1.2rem;
    border-left: 2px solid var(--color-gold);
    color: var(--color-ink-soft);
    font-style: italic;
}

.richtext strong {
    color: var(--color-ink);
}

/* ================= news list (home blog list / past events) ================= */
.news-list {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0.75rem;
    color: inherit;
    border-bottom: 1px solid var(--color-line);
    transition: background 0.15s ease, padding-left 0.2s ease;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.5);
    padding-left: 0.9rem;
}

.news-item:hover .news-item__arrow {
    transform: translateX(3px);
    color: var(--color-accent-ink);
}

.news-item:hover h3 {
    color: var(--color-accent-ink);
}

.news-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--color-dark);
    color: var(--color-on-dark);
}

.news-item__day {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-brand);
}

.news-item__month {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    color: var(--color-on-dark-soft);
    margin-top: 0.05rem;
}

.news-item__body {
    flex: 1;
    min-width: 0;
}

.news-item__tag {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-ink);
    background: var(--color-accent-soft);
    padding: 0.1rem 0.5rem;
    margin-bottom: 0.15rem;
    border-radius: 999px;
}

.news-item h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.news-item__arrow {
    flex-shrink: 0;
    color: var(--color-ink-soft);
    display: inline-flex;
    transition: transform 0.2s ease, color 0.15s ease;
}

.news-item__arrow .icon {
    margin: 0;
}

/* ================= event grid (work page pull) ================= */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    transition: border-color 0.2s ease;
}

.event-card:hover {
    border-color: var(--color-gold);
}

.event-card__poster {
    position: relative;
    overflow: hidden;
    background: var(--color-surface-container);
    aspect-ratio: 3 / 4;
}

.event-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card__poster img {
    transform: scale(1.05);
}

.event-card__date {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: var(--color-dark);
    color: #fff;
}

.event-card__day {
    font-family: var(--font-brand);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.event-card__month {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.event-card__body {
    padding: 1.3rem 1.4rem 1.5rem;
}

.event-card__body h3 {
    margin: 0 0 0.9rem;
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.4;
}

.event-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.event-card__meta li {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--color-ink-soft);
    line-height: 1.5;
}

.event-card__meta .icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--color-accent);
}

/* ================= FORMS (admin + generic) ================= */
.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-ink-soft);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-line);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--color-surface);
    color: var(--color-ink);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.alert {
    padding: 1.1rem 1.3rem;
    border-radius: 0;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.alert-success {
    background: #f2f6ef;
    color: #3c5c34;
    border-left-color: #6a9457;
}

.alert-error {
    background: #fbecec;
    color: #b22222;
    border-left-color: #b22222;
}

/* ================= admin table / nav ================= */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
}

.table th,
.table td {
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--color-line);
    font-size: 0.88rem;
    vertical-align: top;
}

.table th {
    color: var(--color-ink-soft);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-line);
}

.admin-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-line);
}

.admin-nav a {
    padding: 0.7rem 1rem;
    margin-bottom: -1px;
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-ink-soft);
    border-bottom: 2px solid transparent;
}

.admin-nav a:hover {
    color: var(--color-ink);
}

.admin-nav a.active {
    color: var(--color-accent-ink);
    border-bottom-color: var(--color-gold);
}

.content-field {
    background: var(--color-surface-container-low);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.1rem;
}

.content-field__label {
    display: block;
    font-family: var(--font-brand);
    font-size: 1.02rem;
    font-weight: 400;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.content-field__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 700px) {
    .content-field__cols {
        grid-template-columns: 1fr 1fr;
    }
}

.pc-mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

@media (min-width: 700px) {
    .pc-mobile-grid--split {
        grid-template-columns: 1fr 1fr;
    }

    .pc-mobile-grid:not(.pc-mobile-grid--split) {
        max-width: 320px;
    }
}

.content-field__col label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-surface);
    background: var(--color-ink-soft);
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.55rem;
}

.content-field__col:first-child label {
    background: var(--color-accent);
}

.content-field__col-label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-surface);
    background: var(--color-accent);
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
}

.content-field__col input,
.content-field__col textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--color-line);
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.92rem;
    background: var(--color-surface);
    color: var(--color-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-field__col textarea {
    resize: vertical;
}

.content-field__col input:focus,
.content-field__col textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

/* URL-type fields render a single full-width input (no JA/EN split) */
.content-field > input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--color-line);
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.92rem;
    background: var(--color-surface);
    color: var(--color-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-field > input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

/* ================= ADMIN DROPZONE (file uploads) ================= */
.dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 2.2rem 1.5rem;
    border: 1.5px dashed var(--color-line);
    border-radius: 8px;
    background: var(--color-surface-container-low);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.dropzone:hover,
.dropzone.is-dragover {
    border-color: var(--color-accent);
    background: var(--color-accent-soft);
}

.dropzone .icon {
    width: 26px;
    height: 26px;
    margin: 0 0 0.2rem;
    color: var(--color-accent);
}

.dropzone__text {
    font-family: var(--font-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--color-ink-soft);
}

.dropzone__hint {
    font-size: 0.7rem;
    color: var(--color-ink-soft);
    opacity: 0.7;
}

.dropzone__filename {
    display: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent-ink);
    word-break: break-all;
}

.dropzone.has-file .dropzone__filename {
    display: block;
}

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

/* ================= ADMIN ACCORDION ================= */
.admin-accordion {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    margin-bottom: 1.1rem;
}

.admin-accordion > summary {
    cursor: pointer;
    padding: 1rem 1.3rem;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-accordion > summary::-webkit-details-marker {
    display: none;
}

.admin-accordion > summary::after {
    content: '\25BD';
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--color-ink-soft);
    transition: transform 0.2s ease;
}

.admin-accordion[open] > summary::after {
    transform: rotate(180deg);
}

.admin-accordion__body {
    padding: 1.3rem;
    border-top: 1px solid var(--color-line);
}

/* ================= ADMIN: MOBILE ================= */
@media (max-width: 699px) {
    .admin-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        margin-bottom: 1.3rem;
    }

    .admin-bar .page-title {
        font-size: 1.35rem;
        padding-bottom: 0;
        border-bottom: none;
    }

    .admin-bar .page-title::after {
        display: none;
    }

    .admin-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        margin-bottom: 1.3rem;
        -webkit-overflow-scrolling: touch;
    }

    .admin-nav a {
        padding: 0.6rem 0.7rem;
        font-size: 0.72rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .page-lead {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .admin-accordion {
        margin-bottom: 0.7rem;
    }

    .admin-accordion > summary {
        padding: 0.8rem 1rem;
        font-size: 0.78rem;
    }

    .admin-accordion__body {
        padding: 1rem;
    }

    .content-field {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .content-field__label {
        font-size: 0.92rem;
        margin-bottom: 0.8rem;
    }

    .form-group {
        margin-bottom: 1.1rem;
    }

    .dropzone {
        padding: 1.5rem 1rem;
    }

    .pc-mobile-grid {
        gap: 1rem;
    }

    .photo-grid {
        gap: 0.7rem;
    }

    .photo-grid > div {
        padding: 0.5rem;
    }

    /* admin tables: a real <table> squeezes every column into the narrow
       viewport (long titles/venues wrap to 1-2 characters per line) — on
       phones each row instead reflows into a small stacked card, one line
       per field, labelled by the data-label attribute on each <td> */
    .table-wrap {
        overflow-x: visible;
        border: none;
    }

    .table,
    .table tbody,
    .table tr {
        display: block;
        width: 100%;
    }

    .table thead {
        display: none;
    }

    .table tr {
        border: 1px solid var(--color-line);
        border-radius: 8px;
        padding: 0.7rem 0.9rem;
        margin-bottom: 0.7rem;
        background: var(--color-surface);
    }

    .table td {
        display: block;
        width: auto;
        padding: 0.35rem 0;
        border-bottom: none;
        font-size: 0.85rem;
    }

    .table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-label);
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--color-ink-soft);
        margin-bottom: 0.1rem;
    }
}

.login-box {
    max-width: 380px;
    margin: 5rem auto;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    padding: 2.5rem;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--color-surface-container);
    border-top: 1px solid var(--color-line);
    margin-top: 4rem;
}

.site-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.site-footer__brand {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    color: var(--color-ink);
}

.site-footer__copy {
    font-family: var(--font-label);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    color: var(--color-ink-soft);
}

/* ================= animations ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        animation: none;
    }
}

/* ================= RESPONSIVE ================= */
@media (min-width: 640px) {
    .field-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .site-nav__links {
        display: flex;
    }

    .site-nav__inquiry {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .schedule-item__poster {
        width: 76px;
    }

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

    .bento-card--dark {
        grid-column: span 2;
    }

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

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

    .journal-card--featured {
        grid-column: span 3;
    }

    .inquiry-grid {
        grid-template-columns: 1fr 2fr;
        gap: 3.5rem;
    }

    .timeline__item {
        flex-direction: row;
        gap: 2.5rem;
    }

    .timeline__date-col {
        width: 180px;
        flex-shrink: 0;
        text-align: right;
        padding-right: 1rem;
    }

    .timeline__card {
        flex: 1;
    }

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

    .page-banner__card {
        margin-left: 3rem;
        margin-top: -4rem;
    }

    .journal-card--plain {
        grid-column: span 1;
    }
}

@media (max-width: 899px) {
    :root {
        --nav-height: 64px;
        font-size: 16.5px;
    }

    body {
        line-height: 1.8;
    }

    .container {
        padding: 0 var(--margin-mobile, 20px);
    }

    .site-nav__inner {
        padding: 0 var(--margin-mobile, 20px);
    }

    .site-nav__brand {
        font-size: 1.2rem;
    }

    .site-nav__actions {
        gap: 0.7rem;
    }

    /* belt-and-suspenders: guarantee the hamburger collapse regardless of any
       stale intermediate cache serving an older stylesheet */
    .site-nav__links,
    .site-nav__inquiry {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex !important;
    }

    /* --- hero: full-bleed, sized for a phone viewport (kept short so it doesn't read as an oddly tall photo) --- */
    .hero-cinema {
        height: 75vh;
        height: 75svh;
        min-height: 530px;
        max-height: 750px;
    }

    .hero-cinema__content {
        bottom: 0.1rem;
        padding: 1.25rem 0 0.7rem;
    }

    .hero-cinema__title {
        font-size: 1.85rem;
        max-width: 100%;
    }

    .hero-cinema__cta {
        width: 100%;
        gap: 1rem;
        padding: 0.3rem 0;
        border-bottom: none;
    }

    .hero-cinema__cta-link {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .promo-slider {
        width: min(600px, 97vw);
        margin: 0.6rem auto 0.25rem;
    }

    .promo-slider__slide {
        flex: 0 0 84%;
    }

    .social-rail__item {
        width: 59px;
        height: 59px;
    }

    .social-rail__item .icon {
        width: 32px;
        height: 32px;
    }

    .promo-slider__arrow .icon {
        width: 17px;
        height: 17px;
    }

    .quick-info {
        margin-top: 1.1rem;
    }

    .quick-info__item {
        padding: 0.8rem 1rem;
    }

    /* --- generous desktop whitespace, compressed for mobile --- */
    .philosophy {
        padding: 2.75rem 0 0.5rem;
    }

    .philosophy__rule {
        height: 3rem;
        margin-top: 1.75rem;
    }

    .section {
        margin: 1.75rem 0;
    }

    .section__title {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .bento {
        gap: 0.8rem;
    }

    .bento-card {
        min-height: 0;
        padding: 1.1rem;
    }

    .bento-card--dark {
        min-height: 0;
        padding: 1.3rem;
    }

    .teaser-grid {
        gap: 1rem;
    }

    .teaser-card {
        padding: 1.25rem;
    }

    .gallery-teaser {
        padding: 3rem 0;
    }

    .gallery-grid {
        gap: 0.6rem;
        margin-top: 1.6rem;
    }

    .cta-dark {
        padding: 3.5rem 0;
    }

    .page-header {
        padding: 2.5rem 0 2rem;
    }

    .page-title {
        margin-bottom: 1.75rem;
    }

    .page-banner {
        margin-bottom: 3rem;
    }

    .page-banner__frame {
        height: 26vh;
        min-height: 170px;
    }

    .page-banner__card {
        margin: -2.5rem 1rem 0;
        padding: 1.4rem 1.5rem;
    }

    .timeline {
        gap: 1.75rem;
    }

    .timeline__card {
        padding: 1.4rem;
    }

    .timeline__date {
        font-size: 1.6rem;
    }

    .inquiry-grid {
        gap: 1.5rem;
    }

    .inquiry-info,
    .inquiry-form {
        padding: 1.5rem;
    }

    .journal-grid {
        gap: 1.1rem;
    }

    .journal-card--featured {
        padding: 1.25rem;
    }

    .journal-card--featured .journal-card__title {
        font-size: 1.4rem;
    }

    .site-footer__inner {
        padding: 2.25rem 20px;
    }
}
