* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: Georgia, serif;
    background-color: #000;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header {
    position: relative;
    z-index: 1;
    padding: 30px 20px;
    text-align: center;
}

.back-link {
    display: inline-block;
    font-size: 16px;
    color: #b3d900;
    text-decoration: none;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.7;
}

.header h1 {
    font-size: 48px;
    color: #99cc00;
    font-weight: normal;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 60vh;
}

.container::after {
    content: '';
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

.content {
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    z-index: 10;
    font-size: 12px;
    font-style: italic;
    border-top: 1px solid #99cc00;
    background: #000;
}

.footer p {
    line-height: 1.4;
    color: #fff;
}

.footer a {
    color: #b3d900;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }

    .container {
        padding: 15px;
        min-height: 50vh;
    }

    .footer {
        font-size: 10px;
    }

    .logo-grid {
        columns: 2;
        column-gap: 8px;
    }

    .logo-grid img {
        width: 100%;
        height: auto;
        margin-bottom: 8px;
    }

    .video-grid,
    .cover-grid,
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 5px;
        padding-right: 5px;
        max-width: 100%;
    }

    .video-box,
    .cover-box,
    .tour-box {
        max-width: 100%;
    }

    .section-title-input {
        font-size: 24px;
        margin: 0 auto 30px;
    }

    .video-text,
    .cover-text,
    .tour-text {
        font-size: 14px;
        word-break: break-word;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
    }

    .commission-content h2 {
        font-size: 24px;
    }

    .commission-content h3 {
        font-size: 18px;
    }

    .commission-content p {
        font-size: 14px;
    }

    .video-container {
        flex-direction: column;
        align-items: center;
    }

    .video-container .video-box {
        max-width: 100%;
        width: 90vw;
    }
}

.logo-grid {
    columns: 5;
    column-gap: 10px;
    padding-bottom: 150px;
}

.logo-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    break-inside: avoid;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 70vw;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #99cc00;
    font-size: 40px;
    cursor: pointer;
    z-index: 101;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #99cc00;
    font-size: 48px;
    cursor: pointer;
    transition: opacity 0.2s;
    padding: 10px 20px;
    z-index: 101;
}

.lightbox-next {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #99cc00;
    font-size: 48px;
    cursor: pointer;
    transition: opacity 0.2s;
    padding: 10px 20px;
    z-index: 101;
}

.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .lightbox-content {
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .lightbox-content img {
        max-width: 90vw;
        max-height: 60vh;
    }

    .lightbox-prev, .lightbox-next {
        position: fixed;
        font-size: 40px;
        padding: 15px 20px;
        z-index: 102;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 36px;
        z-index: 102;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 150px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-preview {
    width: 100%;
    height: auto;
    background: #333;
    border: 2px solid #99cc00;
    cursor: pointer;
    transition: opacity 0.2s;
    display: block;
}

.video-preview:hover {
    opacity: 0.8;
}

.video-text {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    font-size: 24px;
    color: #99cc00;
    text-align: center;
    outline: none;
}

.video-text:focus {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .video-grid {
        gap: 30px;
    }

    .video-box {
        max-width: 90vw;
    }
}

.cover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 150px;
    max-width: 1000px;
    margin: 0 auto;
}

.cover-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid #99cc00;
}

.cover-text {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    font-size: 24px;
    color: #99cc00;
    text-align: center;
    outline: none;
}

.cover-text:focus {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .cover-grid {
        grid-template-columns: 1fr;
    }
}

.commission-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-bottom: 150px;
    text-align: left;
}

.commission-content h2 {
    font-size: 32px;
    color: #99cc00;
    margin-bottom: 20px;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
}

.commission-content h3 {
    font-size: 24px;
    color: #99cc00;
    margin: 30px 0 20px 0;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
}

.commission-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.commission-content a {
    color: #99cc00;
    text-decoration: none;
}

.commission-content a:hover {
    text-decoration: underline;
}

.service {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 3px solid #99cc00;
    background: rgba(255, 255, 255, 0.3);
}

.service-name {
    display: block;
    font-size: 18px;
    color: #99cc00;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
}

.service-price {
    display: inline-block;
    font-size: 16px;
    color: #99cc00;
    margin-bottom: 8px;
}

.service p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.contact-info {
    margin-top: 40px;
    font-size: 18px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-bottom: 150px;
}

.form-group {
    margin-bottom: 25px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #99cc00;
    background: transparent;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #99cc00;
    opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: Georgia, serif;
}

.form-submit {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid #99cc00;
    color: #99cc00;
    font-size: 18px;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: #99cc00;
    color: #000;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 150px;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid #99cc00;
}

.tour-text {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    font-size: 24px;
    color: #99cc00;
    text-align: center;
    outline: none;
}

.tour-text:focus {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}

.tour-section {
    margin-bottom: 60px;
}

.section-title-input {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    font-size: 32px;
    color: #99cc00;
    text-align: center;
    outline: none;
    font-style: italic;
}

.section-title-input::placeholder {
    color: #99cc00;
    opacity: 0.5;
}

.section-title-input:focus {
    opacity: 0.8;
}

.video-container {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container .video-box {
    max-width: 500px;
}
