/**
 * Calligraphie.art - Stylesheet
 * Japanese-inspired design
 */

:root {
    --ink-black: #1a1a1a;
    --paper-cream: #f5f0e6;
    --vermillion: #d4443e;
    --gold-accent: #c9a962;
    --soft-gray: #8b8680;
    --deep-brown: #3d3028;
    --light-wash: #e8e0d4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Page Transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes logoPopIn {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--paper-cream);
    color: var(--ink-black);
    line-height: 1.8;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.1s forwards;
}
body.fade-out {
    animation: fadeOut 0.3s ease forwards;
}
body.no-transition {
    animation: none !important;
    opacity: 1 !important;
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-transition-overlay.active {
    opacity: 1;
    visibility: visible;
}
.page-transition-overlay img {
    width: 100px;
    height: auto;
    opacity: 0;
}
.page-transition-overlay.active img {
    animation: logoPopIn 0.4s ease forwards;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 9999;
}

h1, h2, h3 { font-family: 'Zen Antique', serif; font-weight: 400; letter-spacing: 0.05em; }
.jp-text { font-family: 'Noto Sans JP', sans-serif; }

/* Language Switcher */
.lang-switcher { display: flex; gap: 0.5rem; align-items: center; }
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--paper-cream);
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
}
.lang-btn:hover, .lang-btn.active { background: var(--vermillion); border-color: var(--vermillion); }

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    transition: all 0.4s ease;
}
nav.scrolled { padding: 0.5rem 2rem; background: rgba(26,26,26,0.98); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--paper-cream); }
.logo img { height: 50px; transition: transform 0.3s ease; }
.logo:hover img { transform: rotate(5deg); }
.logo-text { font-family: 'Zen Antique', serif; font-size: 1rem; letter-spacing: 0.1em; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--paper-cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--vermillion); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold-accent); }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background: var(--paper-cream); margin: 5px 0; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--ink-black) 0%, var(--deep-brown) 100%);
    overflow: hidden;
}
.hero-bg { display: none; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, rgba(26,26,26,0.7) 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--paper-cream); padding: 2rem; max-width: 900px; }
.hero-kanji { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(4rem, 15vw, 12rem); font-weight: 300; opacity: 0.15; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 0.5rem; animation: fadeInUp 1s ease forwards; }
.hero-tagline { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 0.8rem; color: var(--gold-accent); animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: 1.2rem; animation: fadeInUp 1s ease 0.4s forwards; opacity: 0; }
.hero-description { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 300; line-height: 1.8; max-width: 700px; margin: 0 auto 2rem; opacity: 0; animation: fadeInUp 1s ease 0.5s forwards; color: rgba(245, 240, 230, 0.85); }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; margin-top: 0.5rem; }
.hero-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.05rem 2rem; min-width: 280px; justify-content: center;
    border-radius: 50px; text-decoration: none; cursor: pointer;
    font-size: 1rem; font-weight: 600; letter-spacing: 0.03em;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8942e 100%);
    color: #1a1a1a; border: none;
    box-shadow: 0 4px 20px rgba(200, 170, 110, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta::before {
    content: ''; position: absolute; inset: 0; border-radius: 50px; opacity: 0;
    background: linear-gradient(135deg, #d4b85c 0%, var(--gold-accent) 100%);
    transition: opacity 0.4s ease;
}
.hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(200, 170, 110, 0.55);
}
.hero-cta:hover::before { opacity: 1; }
.hero-cta-svg { width: 22px; height: 22px; flex-shrink: 0; position: relative; z-index: 1; transition: transform 0.3s ease; }
.hero-cta:hover .hero-cta-svg { transform: scale(1.15); }
.hero-cta-text { position: relative; z-index: 1; }
@media (max-width: 600px) { .hero-buttons { flex-direction: column; align-items: center; padding: 0 1.5rem; } .hero-cta { width: 100%; min-width: unset; } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-indicator svg { width: 30px; height: 30px; stroke: var(--paper-cream); opacity: 0.6; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Sections */
section { padding: 6rem 2rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 1rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--vermillion); margin: 1rem auto; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--soft-gray); max-width: 700px; margin: 0 auto 4rem; }

/* About Section */
.about { background: var(--paper-cream); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: auto; box-shadow: 20px 20px 0 var(--light-wash); transition: all 0.4s ease; }
.about-image:hover img { box-shadow: 30px 30px 0 var(--vermillion); }
.about-image::before { content: '書'; font-family: 'Noto Sans JP', sans-serif; position: absolute; top: -30px; right: -30px; font-size: 8rem; color: var(--vermillion); opacity: 0.1; z-index: -1; }
.about-content h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--deep-brown); }
.about-content p { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--soft-gray); }
.credentials { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--light-wash); }
.credential { text-align: center; }
.credential-number { font-size: 2.5rem; font-weight: 700; color: var(--vermillion); }
.credential-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--soft-gray); }

/* Martial Section */
.martial { background: linear-gradient(175deg, #1a1610 0%, #2a2218 50%, #1a1610 100%); color: var(--paper-cream); position: relative; overflow: hidden; padding: 6rem 2rem; }
.martial::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Crect x='15' y='82' width='68' height='12' rx='1'/%3E%3Crect x='117' y='82' width='68' height='12' rx='1'/%3E%3Cpolygon points='83,82 90,70 100,65 110,70 117,82 117,94 83,94'/%3E%3Cpolygon points='88,94 75,130 85,130 95,102'/%3E%3Cpolygon points='112,94 125,130 115,130 105,102'/%3E%3C/g%3E%3C/svg%3E"); }
.martial > * { position: relative; z-index: 1; }
.martial-header { text-align: center; margin-bottom: 3rem; }
.martial-label { display: inline-block; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-accent); border: 1px solid rgba(200, 170, 110, 0.3); padding: 0.4rem 1.5rem; border-radius: 50px; margin-bottom: 1.5rem; }
.martial .section-title { color: var(--paper-cream); }
.martial .section-title::after { background: var(--gold-accent); }
.martial .section-subtitle { color: rgba(245, 240, 230, 0.7); }
.martial-intro { text-align: center; font-size: 1.1rem; max-width: 800px; margin: 0 auto 3rem; color: rgba(245, 240, 230, 0.8); line-height: 1.8; }
.martial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto 3rem; }
.martial-grid-sm { grid-template-columns: repeat(3, 1fr); }
.martial-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(200, 170, 110, 0.15); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.4s ease; }
.martial-card:hover { background: rgba(200, 170, 110, 0.06); border-color: rgba(200, 170, 110, 0.35); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.martial-card-sm { padding: 1.5rem 1.2rem; }
.martial-kanji { display: block; font-size: 2.8rem; color: var(--gold-accent); margin-bottom: 0.5rem; line-height: 1.2; }
.martial-card-sm .martial-kanji { font-size: 2.2rem; }
.martial-romaji { display: block; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(200, 170, 110, 0.7); margin-bottom: 0.8rem; }
.martial-meaning { font-size: 0.95rem; color: rgba(245, 240, 230, 0.75); line-height: 1.6; }
.martial-outro { text-align: center; font-size: 1.05rem; font-style: italic; max-width: 800px; margin: 0 auto 2rem; color: rgba(245, 240, 230, 0.7); line-height: 1.8; }
.martial-divider { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-accent), transparent); margin: 3rem auto; }
.martial-section-title { font-size: 1.4rem; text-align: center; color: var(--paper-cream); margin-bottom: 2rem; font-weight: 500; }
.martial-text { text-align: center; font-size: 1.05rem; max-width: 750px; margin: 0 auto 1rem; color: rgba(245, 240, 230, 0.75); line-height: 1.8; }
.martial-cta {
    display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.5rem;
    border-radius: 50px; text-decoration: none; font-size: 1.05rem; font-weight: 600;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8942e 100%);
    color: #1a1a1a; border: none; box-shadow: 0 4px 20px rgba(200, 170, 110, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
}
.martial-cta::before { content: ''; position: absolute; inset: 0; border-radius: 50px; opacity: 0; background: linear-gradient(135deg, #d4b85c 0%, var(--gold-accent) 100%); transition: opacity 0.4s ease; }
.martial-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 35px rgba(200, 170, 110, 0.55); }
.martial-cta:hover::before { opacity: 1; }
.martial-cta span { position: relative; z-index: 1; }
.martial-cta-arrow { transition: transform 0.3s ease; }
.martial-cta:hover .martial-cta-arrow { transform: translateX(4px); }
@media (max-width: 768px) { .martial-grid { grid-template-columns: 1fr; } .martial-grid-sm { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .martial-grid-sm { grid-template-columns: 1fr; } }

/* Services Section */
.services { background: var(--ink-black); color: var(--paper-cream); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.services .section-title::after { background: var(--gold-accent); }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--vermillion), var(--gold-accent)); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.06); }
.service-card:hover::before { transform: scaleX(1); }
.service-card img { width: 100%; height: 180px; object-fit: cover; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; opacity: 0.7; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.service-card .btn { margin-top: auto; }

/* Program Section */
.program { background: var(--light-wash); }
.program-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.program-card { background: white; padding: 1.5rem; border-left: 4px solid var(--vermillion); transition: all 0.3s ease; }
.program-card:hover { transform: translateX(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.program-card h4 { font-size: 1.1rem; color: var(--vermillion); margin-bottom: 0.5rem; }
.program-card p { font-size: 0.9rem; color: var(--soft-gray); line-height: 1.6; }

/* Events Section */
.events { background: linear-gradient(135deg, var(--paper-cream) 0%, var(--light-wash) 100%); }
.events-container { max-width: 1200px; margin: 0 auto; }
.event-card { display: grid; grid-template-columns: 320px 1fr; background: white; box-shadow: 0 10px 40px rgba(0,0,0,0.1); margin-bottom: 2rem; overflow: hidden; transition: all 0.4s ease; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.event-left { display: flex; flex-direction: column; }
.event-badge { background: var(--vermillion); color: white; padding: 0.75rem 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; text-align: center; }
.event-image { position: relative; overflow: hidden; flex: 1; cursor: pointer; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-image img { transform: scale(1.05); }
.image-zoom-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: white; padding: 0.4rem 0.6rem; border-radius: 4px; font-size: 0.9rem; opacity: 0; transition: opacity 0.3s ease; }
.event-image:hover .image-zoom-hint { opacity: 1; }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 2rem; cursor: pointer; }
.lightbox-overlay img { max-width: 90%; max-height: 90vh; object-fit: contain; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; line-height: 1; }
.event-content { padding: 2rem; display: flex; flex-direction: column; }
.event-date { display: flex; align-items: center; gap: 0.5rem; color: var(--vermillion); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.event-title { font-size: 1.6rem; margin-bottom: 0.75rem; color: var(--ink-black); }
.event-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin: 1rem 0; padding: 1rem 0; border-top: 1px solid var(--light-wash); border-bottom: 1px solid var(--light-wash); }
.event-detail { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--soft-gray); }
.event-detail svg { width: 16px; height: 16px; stroke: var(--vermillion); flex-shrink: 0; margin-top: 2px; }
.event-description { flex: 1; color: var(--soft-gray); font-size: 0.95rem; margin-bottom: 1rem; }
.event-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.event-price { font-size: 1.4rem; font-weight: 600; color: var(--ink-black); }
.event-price span { font-size: 0.85rem; color: var(--soft-gray); font-weight: 400; }

/* Buttons */
.btn { display: inline-block; padding: 0.9rem 1.8rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.btn-primary { background: var(--vermillion); color: white; }
.btn-primary:hover { background: var(--ink-black); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--ink-black); color: var(--ink-black); }
.btn-outline:hover { background: var(--ink-black); color: white; }
.btn-small { padding: 0.4rem 0.8rem; font-size: 0.7rem; background: var(--vermillion); color: white; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-small:hover { background: var(--ink-black); }

/* Reviews Section */
.reviews { background: var(--ink-black); color: var(--paper-cream); padding: 5rem 2rem; position: relative; overflow: hidden; }
.reviews::before { content: '評'; font-family: 'Noto Sans JP', sans-serif; position: absolute; top: 50%; right: 5%; font-size: 20rem; opacity: 0.03; transform: translateY(-50%); }
.reviews .section-title::after { background: var(--gold-accent); }
.reviews-header { max-width: 1200px; margin: 0 auto 3rem; text-align: center; }
.reviews-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; }
.review-stat { text-align: center; }
.review-stat-number { font-size: 2.5rem; font-weight: 700; color: var(--gold-accent); }
.review-stat-label { font-size: 0.85rem; opacity: 0.7; }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; transition: all 0.3s ease; }
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.review-stars { color: var(--gold-accent); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.7; opacity: 0.85; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--vermillion); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600; }
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.75rem; opacity: 0.5; }
.reviews-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.reviews-pagination button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s ease; }
.reviews-pagination button.active { background: var(--gold-accent); width: 30px; border-radius: 5px; }
.reviews-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.reviews-nav button { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--paper-cream); padding: 0.5rem 1.5rem; cursor: pointer; font-family: inherit; font-size: 0.85rem; transition: all 0.3s ease; }
.reviews-nav button:hover { background: var(--vermillion); border-color: var(--vermillion); }

/* YouTube Section */
.youtube-section { background: var(--deep-brown); color: var(--paper-cream); padding: 5rem 2rem; }
.youtube-section h2 { text-align: center; margin-bottom: 3rem; }
.youtube-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.youtube-video { position: relative; background: #000; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 16/9; }
.youtube-video img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.youtube-video:hover img { opacity: 0.8; }
.youtube-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; background: #ff0000; border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.youtube-play::before { content: ''; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent white; margin-left: 4px; }
.youtube-video:hover .youtube-play { background: #cc0000; transform: translate(-50%, -50%) scale(1.1); }
.youtube-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.youtube-channel { text-align: center; margin-top: 2rem; }
.youtube-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: #ff0000; color: white; padding: 1rem 2rem; text-decoration: none; font-size: 1rem; transition: all 0.3s ease; }
.youtube-btn:hover { background: #cc0000; transform: scale(1.05); }
.youtube-btn svg { width: 24px; height: 24px; }

/* Contact Section */
.contact { background: var(--paper-cream); }
.contact-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--vermillion); flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 0.2rem; }
.contact-item span { color: var(--soft-gray); font-size: 0.95rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--ink-black); color: var(--ink-black); transition: all 0.3s ease; }
.social-links a:hover { background: var(--ink-black); color: white; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.9rem; border: 1px solid var(--light-wash); background: white; font-family: inherit; font-size: 0.95rem; margin-bottom: 0.75rem; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* Footer */
footer { background: var(--ink-black); color: var(--paper-cream); padding: 3rem 2rem 1.5rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 50px; margin-bottom: 0.75rem; }
.footer-brand p { opacity: 0.7; font-size: 0.85rem; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--gold-accent); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--paper-cream); opacity: 0.7; text-decoration: none; font-size: 0.85rem; transition: opacity 0.3s ease; }
.footer-links a:hover { opacity: 1; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.8rem; opacity: 0.6; }

/* Tokyo Time & Weather in Footer */
.tokyo-info { text-align: center; }
.tokyo-time { margin-bottom: 0.5rem; }
.tokyo-clock { font-family: 'Noto Sans JP', monospace; font-size: 1.5rem; font-weight: 600; color: var(--gold-accent); letter-spacing: 0.1em; }
.tokyo-weather { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.weather-icon { font-size: 1.5rem; }
.weather-temp { font-size: 1.1rem; font-weight: 600; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: white; max-width: 550px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-header { background: var(--ink-black); color: var(--paper-cream); padding: 1.5rem; }
.modal-header h2 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.modal-header p { opacity: 0.7; font-size: 0.85rem; }
.modal-close { position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.modal-body { padding: 1.5rem; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; color: var(--ink-black); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem; border: 1px solid var(--light-wash); font-family: inherit; font-size: 0.95rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--vermillion); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-group input { width: auto; margin-top: 0.2rem; }
.checkbox-group label { margin-bottom: 0; font-size: 0.85rem; color: var(--soft-gray); }
.form-summary { background: var(--light-wash); padding: 1.25rem; margin-bottom: 1.25rem; }
.form-summary h4 { margin-bottom: 0.75rem; font-size: 0.95rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.9rem; }
.summary-row.total { border-top: 1px solid var(--soft-gray); margin-top: 0.5rem; padding-top: 0.75rem; font-weight: 600; }

/* Admin */
.admin-float-btn { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--vermillion); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(212, 68, 62, 0.4); transition: all 0.3s ease; z-index: 999; }
.admin-float-btn:hover { transform: scale(1.1); }
.admin-float-btn svg { width: 22px; height: 22px; stroke: white; }
.admin-panel { position: fixed; inset: 0; z-index: 3000; display: none; }
.admin-panel.active { display: flex; }
.admin-sidebar { width: 240px; background: var(--ink-black); color: var(--paper-cream); padding: 1.5rem 0; display: flex; flex-direction: column; }
.admin-logo { padding: 0 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.admin-logo h2 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.admin-logo span { font-size: 0.75rem; opacity: 0.5; }
.admin-nav { flex: 1; list-style: none; }
.admin-nav li a { display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1.25rem; color: var(--paper-cream); text-decoration: none; opacity: 0.7; transition: all 0.3s ease; font-size: 0.85rem; }
.admin-nav li a:hover, .admin-nav li a.active { opacity: 1; background: rgba(255,255,255,0.05); border-left: 3px solid var(--vermillion); }
.admin-nav li a svg { width: 18px; height: 18px; }
.admin-logout { padding: 0.75rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
.admin-logout button { width: 100%; padding: 0.6rem; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--paper-cream); cursor: pointer; font-family: inherit; font-size: 0.8rem; transition: all 0.3s ease; }
.admin-logout button:hover { background: var(--vermillion); border-color: var(--vermillion); }
.admin-main { flex: 1; background: #f8f9fa; overflow-y: auto; }
.admin-header { background: white; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
.admin-header h1 { font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }
.admin-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--soft-gray); }
.admin-content { padding: 1.5rem; }
.admin-card { background: white; padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.admin-card h3 { font-size: 1rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #eee; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #eee; }
.admin-table th { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--soft-gray); }
.status-badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.7rem; border-radius: 20px; }
.status-paid, .status-confirmed { background: #d4edda; color: #155724; }
.status-pending { background: #fff3cd; color: #856404; }

/* Module Editor */
.module-editor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #eee; }
.module-editor-header h4 { margin: 0; font-size: 1rem; }
.module-list { display: flex; flex-direction: column; gap: 0.5rem; }
.module-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: #f8f9fa; border: 1px solid #eee; border-radius: 4px; transition: all 0.2s ease; }
.module-item:hover { background: #f0f0f0; }
.module-item.hidden { opacity: 0.5; background: #fff5f5; border-color: #ffe0e0; }
.module-info { display: flex; align-items: center; gap: 0.75rem; }
.module-index { width: 24px; height: 24px; background: var(--vermillion); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; }
.module-item.hidden .module-index { background: #ccc; }
.module-name { font-size: 0.9rem; font-weight: 500; }
.module-actions { display: flex; gap: 0.25rem; }
.module-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: white; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; transition: all 0.2s ease; }
.module-btn:hover { background: var(--ink-black); color: white; border-color: var(--ink-black); }
.module-btn:hover svg { stroke: white; }
.module-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.module-btn:disabled:hover { background: white; border-color: #ddd; }
.module-btn svg { stroke: var(--ink-black); }

/* Image Grid */
.image-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.image-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.image-item img { width: 100%; height: 100%; object-fit: cover; }

/* Login Modal */
.login-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 4000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.login-modal.active { opacity: 1; visibility: visible; }
.login-box { background: white; padding: 2.5rem; max-width: 380px; width: 100%; text-align: center; }
.login-box h2 { margin-bottom: 0.4rem; }
.login-box > p { color: var(--soft-gray); margin-bottom: 1.5rem; font-size: 0.9rem; }
.login-box .form-group { text-align: left; }
.login-error { background: #f8d7da; color: #721c24; padding: 0.6rem; margin-bottom: 0.75rem; font-size: 0.85rem; display: none; }

/* Event Manager & Editor */
.event-manager { }
.manager-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.manager-header h3 { margin: 0; font-size: 1.1rem; }
.inactive-row { opacity: 0.5; background: #f9f9f9; }
.status-toggle { background: none; border: none; font-size: 1.2rem; cursor: pointer; padding: 0.25rem; }
.action-buttons { display: flex; gap: 0.5rem; }
.btn-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; transition: all 0.2s ease; }
.btn-icon:hover { background: var(--ink-black); color: white; border-color: var(--ink-black); }
.btn-icon:hover svg { stroke: white; }
.btn-icon.danger:hover { background: #dc3545; border-color: #dc3545; }

.event-editor { }
.editor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; }
.editor-header h3 { margin: 0; }
.editor-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.editor-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #eee; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); z-index: 9999; padding: 1.5rem; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 900px; margin: 0 auto; }
.cookie-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.cookie-header h3 { margin: 0; font-size: 1.1rem; }
.cookie-icon { font-size: 1.5rem; }
.cookie-content > p { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.cookie-buttons .btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-link { background: none; border: none; color: var(--vermillion); cursor: pointer; font-size: 0.85rem; padding: 0.6rem 0; text-decoration: underline; }
.btn-link:hover { color: var(--deep-brown); }
.cookie-footer { font-size: 0.8rem; color: #888; }
.cookie-footer a { color: var(--vermillion); }
.cookie-options { margin-bottom: 1.25rem; }
.cookie-option { padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.cookie-option:last-child { border-bottom: none; }
.cookie-option-header { display: flex; gap: 1rem; align-items: flex-start; }
.cookie-option-header div { flex: 1; }
.cookie-option-header strong { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; }
.cookie-option-header p { margin: 0; font-size: 0.8rem; color: #888; }

/* Cookie Switch Toggle */
.cookie-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch .slider { position: absolute; cursor: pointer; inset: 0; background: #ccc; border-radius: 24px; transition: 0.3s; }
.cookie-switch .slider:before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
.cookie-switch input:checked + .slider { background: var(--vermillion); }
.cookie-switch input:checked + .slider:before { transform: translateX(20px); }
.cookie-switch.disabled .slider { opacity: 0.6; cursor: not-allowed; }

/* Contact Form Captcha */
.captcha-group { margin-top: 0.75rem; }
.captcha-row { display: flex; align-items: stretch; gap: 0.5rem; }
.captcha-question { font-size: 1rem; font-weight: 600; background: #f5f5f5; padding: 0 0.75rem; border-radius: 4px; min-width: 80px; text-align: center; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; }
.captcha-input { width: 70px !important; text-align: center; font-size: 1rem; font-weight: 600; }
.captcha-refresh { width: 42px; border: 1px solid #ddd; background: white; border-radius: 4px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; }
.captcha-refresh:hover { background: var(--vermillion); color: white; border-color: var(--vermillion); }

/* Contact Form Privacy */
.privacy-group { margin-top: 0.75rem; }
.privacy-group .checkbox-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-size: 0.85rem; line-height: 1.5; color: #666; }
.privacy-group .checkbox-label input { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--vermillion); }
.privacy-group .checkbox-label a { color: var(--vermillion); text-decoration: underline; }

/* Form Status Messages */
.form-status { padding: 0.6rem 0.75rem; border-radius: 4px; margin-bottom: 0.75rem; font-size: 0.85rem; }
.form-status.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-status.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Contact Section */
.contact-container { max-width: 600px; margin: 0 auto; }
.contact-form { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.contact-form .form-group { margin-bottom: 0.75rem; }
.contact-form .form-group label { display: block; margin-bottom: 0.3rem; font-size: 0.8rem; font-weight: 500; color: var(--ink-black); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.6rem; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 0.9rem; transition: border-color 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--vermillion); outline: none; }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form button[disabled] { opacity: 0.6; cursor: not-allowed; }
.contact-form .btn { padding: 0.6rem 1.5rem; margin-top: 0.5rem; }

/* Footer Social Links */
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--paper-cream); transition: all 0.3s ease; }
.footer-social a:hover { background: var(--vermillion); transform: translateY(-3px); }

/* Image Upload */
.image-upload-container { display: flex; gap: 1.5rem; align-items: flex-start; }
.image-preview { width: 200px; height: 250px; border: 2px dashed #ddd; border-radius: 8px; overflow: hidden; background: #f9f9f9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-upload-controls { flex: 1; }
.upload-hint { font-size: 0.8rem; color: #888; margin-top: 0.75rem; line-height: 1.5; }
.upload-error { font-size: 0.85rem; color: #dc3545; margin-top: 0.5rem; font-weight: 500; }

/* Messages List in Admin */
.messages-list { display: flex; flex-direction: column; gap: 1rem; }
.message-item { border: 1px solid #eee; border-radius: 8px; padding: 1rem; background: white; transition: all 0.2s ease; }
.message-item.unread { border-left: 4px solid var(--vermillion); background: #fff9f9; }
.message-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.message-sender { display: flex; flex-direction: column; }
.message-sender strong { font-size: 0.95rem; }
.message-sender span { font-size: 0.8rem; color: #888; }
.message-meta { display: flex; align-items: center; gap: 0.5rem; }
.message-date { font-size: 0.75rem; color: #999; }
.message-warning { cursor: help; }
.message-subject { font-weight: 500; margin-bottom: 0.5rem; color: var(--deep-brown); }
.message-body { font-size: 0.9rem; line-height: 1.6; color: #555; white-space: pre-wrap; margin-bottom: 1rem; padding: 0.75rem; background: #f9f9f9; border-radius: 4px; }
.message-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-small { padding: 0.35rem 0.75rem; font-size: 0.75rem; border: 1px solid #ddd; background: white; border-radius: 4px; cursor: pointer; text-decoration: none; color: var(--ink-black); transition: all 0.2s ease; }
.btn-small:hover { background: var(--ink-black); color: white; border-color: var(--ink-black); }
.btn-small.btn-danger:hover { background: #dc3545; border-color: #dc3545; }

/* Admin Toolbar */
.admin-toolbar { margin-bottom: 1rem; display: flex; gap: 0.5rem; }

/* Event Editor */
.event-editor { max-width: 700px; }
.event-editor hr { margin: 1.5rem 0; border: none; border-top: 1px solid #eee; }
.event-editor .form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #eee; }

/* Checkbox inline */
.checkbox-inline { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-inline input { width: auto; margin: 0; }
.checkbox-inline span { font-weight: 500; }

/* Action buttons */
.action-buttons { display: flex; gap: 0.25rem; }
.btn-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f5f5f5; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; transition: all 0.2s ease; }
.btn-icon:hover { background: var(--ink-black); color: white; border-color: var(--ink-black); }
.btn-icon:hover svg { stroke: white; }
.btn-icon.btn-danger:hover { background: #dc3545; border-color: #dc3545; }

/* Inactive row */
.inactive-row { opacity: 0.5; background: #f9f9f9; }

/* Legal Modal */
.legal-modal { max-width: 700px; }
.legal-content { padding: 2rem; line-height: 1.8; }
.legal-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--ink-black); }
.legal-content h4 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--deep-brown); }
.legal-content p { margin-bottom: 1rem; color: var(--soft-gray); }

/* Legal Editor */
.legal-tabs, .lang-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.legal-tabs button, .lang-tabs button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.legal-tabs button.active, .lang-tabs button.active {
    background: var(--vermillion);
    color: white;
    border-color: var(--vermillion);
}
.legal-tabs button:hover, .lang-tabs button:hover { border-color: var(--vermillion); }

/* Footer Editor */
.footer-editor h4 { margin-bottom: 1rem; font-size: 1rem; color: var(--deep-brown); }

/* Settings Editor */
.settings-editor .admin-card h3 {
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.settings-editor .admin-card h3 svg { stroke: var(--vermillion); }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid, .reviews-grid, .youtube-grid { grid-template-columns: repeat(2, 1fr); }
    .event-card { grid-template-columns: 1fr; }
    .event-left { flex-direction: column; }
    .program-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Cookie Banner Mobile */
    .cookie-banner { padding: 1rem; }
    .cookie-buttons { flex-direction: column; }
    .cookie-buttons .btn { width: 100%; text-align: center; }
    .cookie-option-header { flex-direction: column; gap: 0.5rem; }
    
    /* Captcha Mobile */
    .captcha-row { flex-wrap: wrap; }
    .captcha-question { min-width: auto; }
    
    /* Navigation Mobile */
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ink-black); flex-direction: column; padding: 1rem 0; gap: 0; }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 0.75rem 1.5rem; }
    .mobile-menu-btn { display: block; }
    .services-grid, .reviews-grid, .youtube-grid { grid-template-columns: 1fr; }
    .event-details { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .tokyo-info { margin-top: 1rem; }
    .reviews-stats { flex-direction: column; gap: 1rem; }
    .admin-sidebar { width: 55px; }
    .admin-logo h2, .admin-logo span, .admin-nav li a span { display: none; }
    .admin-nav li a { justify-content: center; padding: 0.75rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .image-grid { grid-template-columns: repeat(2, 1fr); }
}
