/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0B1220;
    --japanese-red: #B22222;
    --gold-accent: #FFD700;
    --white-pure: #FFFFFF;
    --white-soft: #F8F9FA;
    --text-light: #94A3B8;
    --text-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-hover: rgba(255, 255, 255, 0.15);
    --shadow-soft: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-dark), #1e293b);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--white-pure);
    background: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 3rem;
    color: var(--white-pure);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.title-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--japanese-red), var(--gold-accent));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.section-header {
    margin-bottom: 5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 18, 32, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(11, 18, 32, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white-pure);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--gold-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--japanese-red), var(--gold-accent));
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white-pure);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.pexels.com/photos/2662116/pexels-photo-2662116.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.85), rgba(178, 34, 34, 0.2));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white-pure);
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease 0.5s both;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease 0.7s both;
    color: var(--gold-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: fadeInUp 1.2s ease 0.9s both;
    color: var(--text-light);
}

.hero-cta {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: var(--white-pure);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease 1.1s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 35px;
    background: var(--white-pure);
    position: relative;
    opacity: 0.7;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white-pure);
    border-bottom: 2px solid var(--white-pure);
    transform: rotate(45deg);
}

/* Story Section */
.story {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-quote {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.quote-mark {
    font-size: 4rem;
    color: var(--japanese-red);
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    opacity: 0.6;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white-pure);
    margin: 1rem 0;
    line-height: 1.6;
    font-family: 'Noto Serif JP', serif;
}

.story-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-description p {
    margin-bottom: 1.5rem;
}

.story-description em {
    color: var(--gold-accent);
    font-style: italic;
}

.story-visual {
    position: relative;
}

.glass-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.glass-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.6s ease;
}

.glass-frame:hover img {
    transform: scale(1.05);
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.showcase-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.card-glass:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

.card-icon {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.showcase-card:hover .card-icon {
    color: var(--japanese-red);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    color: var(--white-pure);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.showcase-card:hover .card-glow {
    opacity: 1;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-dark), #1a202c);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-glass {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-glass {
    background: var(--glass-hover);
    border-color: rgba(178, 34, 34, 0.4);
    box-shadow: 0 25px 60px rgba(178, 34, 34, 0.2);
    transform: scale(1.02);
}

.gallery-glass img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    opacity: 0.9;
}

.gallery-item:hover .gallery-glass img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.8), rgba(178, 34, 34, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-title {
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.overlay-text {
    color: var(--white-pure);
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Quotes Section */
.quotes {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
}

.quote-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote-wrapper {
    overflow: hidden;
    border-radius: 25px;
}

.quote-slide {
    display: none;
    padding: 4rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    text-align: center;
    position: relative;
}

.quote-slide.active {
    display: block;
    animation: fadeInScale 0.8s ease;
}

.quote-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(178, 34, 34, 0.1), transparent 50%);
    pointer-events: none;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white-pure);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.quote-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
}

.quote-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--white-pure);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-btn:hover {
    background: var(--glass-hover);
    border-color: var(--gold-accent);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.quote-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold-accent);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.dot:hover {
    background: var(--japanese-red);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    pointer-events: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--white-pure);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white-pure);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.submit-btn {
    background: linear-gradient(135deg, var(--japanese-red), var(--gold-accent));
    color: var(--white-pure);
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.info-card:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-size: 1.3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.info-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white-pure);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo .logo-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    color: var(--gold-accent);
    background: var(--glass-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-12px) translateX(-50%);
    }
    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Enhancement */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-effect:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 18, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        gap: 3rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .quote-slide {
        padding: 2.5rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .story, .showcase, .gallery, .quotes, .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-slide {
        padding: 2rem 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .card-glass {
        padding: 2rem 1.5rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--japanese-red), var(--gold-accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Artistic Enhancements */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Japanese Aesthetic Elements */
.zen-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hover Glow Effects */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Text Selection */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--white-pure);
}

::-moz-selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--white-pure);
}