/* ─── CSS Variables – Light Mode ─── */
:root {
    --red: #e10600;
    --red-dk: #a80400;
    --black: #000000;
    --dark: #f5f3f0; /* page background  */
    --dark2: #ffffff; /* card / section bg */
    --dark3: #edeae6; /* alt section bg    */
    --grey: #666;
    --white: #1a1a1a; /* body text         */
    --off-white: #f0ece6;
    --border: rgba(0, 0, 0, 0.08);
    --muted: rgba(0, 0, 0, 0.5);
    --muted2: rgba(0, 0, 0, 0.38);
}

/* ─── Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.05em;
}

.kanji {
    font-family: "Noto Serif JP", serif;
}

/* ─── Utility ─── */
.text-red {
    color: var(--red) !important;
}
.bg-dark2 {
    background: var(--dark2) !important;
}
.bg-dark3 {
    background: var(--dark3) !important;
}
.section-pad {
    padding: 100px 0;
}

.section-label {
    font-family: "Barlow", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 0;
}

.divider-red {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 20px 0 32px;
}

/* ─── Buttons ─── */
.btn-red {
    background: var(--red);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 12px 32px;
    border: 2px solid var(--red);
    border-radius: 0;
    transition:
        background 0.25s,
        color 0.25s,
        box-shadow 0.25s;
}
.btn-red:hover {
    background: transparent;
    color: var(--red);
    box-shadow: 0 0 16px rgba(225, 6, 0, 0.5);
}

.btn-outline-red {
    background: transparent;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 12px 32px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    transition:
        border-color 0.25s,
        color 0.25s,
        box-shadow 0.25s;
}
.btn-outline-red:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 16px rgba(225, 6, 0, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: #111;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 12px 32px;
    border: 2px solid #333;
    border-radius: 0;
    text-decoration: none;
    transition:
        border-color 0.25s,
        color 0.25s,
        box-shadow 0.25s;
}
.btn-outline-dark:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 16px rgba(225, 6, 0, 0.3);
}

.btn-sm-red {
    font-size: 0.95rem;
}

.btn-directions {
    font-size: 0.85rem;
    padding: 8px 20px;
}

.btn-cta {
    font-size: 1.15rem;
    padding: 14px 40px;
}

/* ─── Navbar ─── */
#mainNav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(225, 6, 0, 0.15);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 14px 0;
    transition: padding 0.3s;
    z-index: 1050;
}
#mainNav.scrolled {
    padding: 8px 0;
}

.navbar-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: #111 !important;
    letter-spacing: 0.08em;
}
.navbar-brand span {
    color: var(--red);
}

.nav-link {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7) !important;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.2s;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-link:hover {
    color: #000 !important;
}
.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: var(--red);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28225, 6, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-decoration: none;
}

/* ─── Hero ─── */
#hero {
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(225, 6, 0, 0.15) 100%
        ),
        url("https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1800&q=80")
            center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    padding-top: 80px;
}

.hero-kanji {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(180px, 22vw, 320px);
    color: rgba(225, 6, 0, 0.07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.hero-tag {
    font-family: "Barlow", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-tag::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--red);
}

.hero-headline {
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-headline .dot {
    color: var(--red);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.stats-bar {
    background: var(--red);
    padding: 20px 0;
}
.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

#about {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}
.about-kanji-bg {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(200px, 28vw, 400px);
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
}
.about-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid var(--red);
    transform: translate(12px, 12px);
    z-index: 0;
}
.about-img-wrap img {
    position: relative;
    z-index: 1;
}

.about-copy {
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.8;
    margin-bottom: 36px;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.philosophy-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.philosophy-item h5 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.philosophy-item p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

#programs {
    background: var(--dark);
}
.program-card {
    background: var(--dark2);
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    height: 100%;
}
.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 6, 0, 0.25);
    box-shadow: 0 20px 60px rgba(225, 6, 0, 0.1);
}
.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 64px;
    height: 64px;
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 24px;
}

.program-icon-strong {
    background: rgba(225, 6, 0, 0.2);
    border-color: rgba(225, 6, 0, 0.5);
}

.program-age {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}
.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.program-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.programs-intro {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
}
.program-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(225, 6, 0, 0.4);
    color: rgba(225, 6, 0, 0.8);
    margin-right: 6px;
    margin-bottom: 6px;
}

#locations {
    background: var(--dark3);
}
.dojo-card {
    background: var(--dark2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 32px;
    transition:
        box-shadow 0.3s,
        border-color 0.3s;
    height: 100%;
}
.dojo-card:hover {
    border-color: rgba(225, 6, 0, 0.3);
    box-shadow: 0 8px 40px rgba(225, 6, 0, 0.1);
}
.dojo-card h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.dojo-meta {
    font-size: 0.8rem;
    color: var(--muted2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.dojo-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--muted);
}
.dojo-detail i {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
}
.dojo-icon {
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.dojo-button {
    font-size: 0.85rem;
    padding: 8px 20px;
}

#schedule {
    background: var(--dark2);
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-table th {
    background: var(--red);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.schedule-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.85rem;
    background: #fff;
    vertical-align: middle;
}
.schedule-table tr:nth-child(even) td {
    background: #fafaf9;
}

.class-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.pill-kids {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}
.pill-teen {
    background: rgba(13, 110, 253, 0.15);
    color: #6ea8fe;
    border: 1px solid rgba(13, 110, 253, 0.3);
}
.pill-adult {
    background: rgba(225, 6, 0, 0.15);
    color: #ff6b68;
    border: 1px solid rgba(225, 6, 0, 0.3);
}
.pill-open {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.pill-empty {
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.schedule-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.schedule-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

#instructors {
    background: var(--dark);
}
.instructor-card {
    text-align: center;
    transition: transform 0.3s;
}
.instructor-card:hover {
    transform: translateY(-6px);
}

.instructor-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.15);
    margin: 0 auto 20px;
    display: block;
    filter: grayscale(20%);
    transition:
        filter 0.3s,
        box-shadow 0.3s;
}
.instructor-card:hover .instructor-img {
    filter: grayscale(0%);
    box-shadow:
        0 0 0 6px rgba(225, 6, 0, 0.35),
        0 0 30px rgba(225, 6, 0, 0.2);
}

.belt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border: 1px solid rgba(225, 6, 0, 0.5);
    color: var(--red);
    margin-bottom: 10px;
}
.belt-strip {
    width: 24px;
    height: 6px;
    background: var(--red);
    border-radius: 1px;
}
.belt-strip.black {
    background: #222;
    border: 1px solid #555;
}
.belt-strip.brown {
    background: #7b3f00;
}

.instructor-card h4 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.instructor-role {
    color: var(--red);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.instructor-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

#gallery {
    background: var(--dark3);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item.span2 {
    grid-column: span 2;
}
.gallery-item.span2r {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(30%);
    transition:
        transform 0.4s,
        filter 0.4s;
}
.gallery-item.span2 img {
    height: 280px;
}
.gallery-item.span2r img {
    height: 100%;
    min-height: 446px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(225, 6, 0, 0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}
.gallery-item:hover .gallery-overlay {
    background: rgba(225, 6, 0, 0.35);
}
.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

#testimonials {
    background: var(--dark2);
}
.testimonial-card {
    background: var(--dark2);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 3px solid var(--red);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 32px;
    height: 100%;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.author-role {
    font-size: 0.78rem;
    color: var(--muted2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stars {
    color: var(--red);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

#cta {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(225, 6, 0, 0.25) 100%
        ),
        url("https://images.unsplash.com/photo-1609710228159-0fa9bd7c0827?w=1400&q=80")
            center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#cta .kanji-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(200px, 30vw, 450px);
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    pointer-events: none;
    line-height: 1;
}
#cta h2 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 20px;
}
#cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 40px;
}

#contact {
    background: var(--dark3);
    scroll-margin-top: 88px;
}

.contact-copy {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-list-item i {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-form {
    background: var(--dark2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--red);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    padding: 34px;
}

.contact-form .form-label {
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 0;
    color: #111;
    min-height: 48px;
}

.contact-form textarea.form-control {
    min-height: 132px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 0.2rem rgba(225, 6, 0, 0.12);
}

.contact-submit {
    width: 100%;
    margin-top: 8px;
}

.contact-success {
    background: rgba(25, 135, 84, 0.12);
    border: 1px solid rgba(25, 135, 84, 0.32);
    color: #146c43;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 14px 16px;
}

.form-error {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 6px;
}

footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(225, 6, 0, 0.2);
    padding: 64px 0 28px;
}

.footer-brand {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: #fff;
    display: block;
    margin-bottom: 14px;
}
.footer-brand span {
    color: var(--red);
}
.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
    font-size: 1rem;
}
.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(225, 6, 0, 0.08);
}

.footer-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 10px;
    transition:
        color 0.2s,
        padding-left 0.2s;
}
.footer-link:hover {
    color: var(--red);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-kanji {
    color: rgba(225, 6, 0, 0.3);
    font-size: 1.2rem;
}

.footer-legal-link {
    font-size: 0.75rem;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#lightbox.open {
    display: flex;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.lb-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
}

.lb-frame {
    position: relative;
}

#lb-img {
    max-height: 72vh;
    max-width: 90vw;
    object-fit: contain;
    border: 2px solid rgba(225, 6, 0, 0.4);
    box-shadow: 0 0 60px rgba(225, 6, 0, 0.2);
    display: block;
}

.lb-caption {
    margin-top: 14px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

.lb-counter {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
}

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(225, 6, 0, 0.85);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lb-btn:hover {
    background: var(--red);
}
.lb-btn.prev {
    left: -64px;
}
.lb-btn.next {
    right: -64px;
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.lb-close:hover {
    border-color: var(--red);
    color: var(--red);
}

.lb-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90vw;
}
.lb-thumb {
    width: 52px;
    height: 40px;
    object-fit: cover;
    opacity: 0.45;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        opacity 0.2s,
        border-color 0.2s;
}
.lb-thumb.active,
.lb-thumb:hover {
    opacity: 1;
    border-color: var(--red);
}

@media (max-width: 600px) {
    .lb-btn.prev {
        left: -42px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .lb-btn.next {
        right: -42px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up.delay-1 {
    transition-delay: 0.15s;
}
.fade-up.delay-2 {
    transition-delay: 0.3s;
}
.fade-up.delay-3 {
    transition-delay: 0.45s;
}

@media (max-width: 991px) {
    .section-pad {
        padding: 70px 0;
    }
    .about-img-wrap img {
        height: 340px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.span2r {
        grid-row: span 1;
    }
    .gallery-item.span2r img {
        min-height: 220px;
    }
}
@media (max-width: 767px) {
    .hero-headline {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    .schedule-table {
        font-size: 0.75rem;
    }
    .schedule-table th,
    .schedule-table td {
        padding: 8px 6px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.span2 {
        grid-column: span 1;
    }
}
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}
