@charset "UTF-8";

/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #d5b19e;
    --secondary-text: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-jp: 'Noto Serif JP', serif;
    --font-marcellus: 'Marcellus', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* =========================================
   2. Utility Classes
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.sp-only {
    display: none;
}

.spbr {
    display: none;
}

.spnobr {
    display: block;
}

.mb0 {
    margin-bottom: 0 !important;
}

/* =========================================
   3. Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    background-image: url('../assets/images/cover.jpg');
    background-size: cover;
    background-position: center;
}

#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
    width: 100%;
    margin-top: 20vh;
}

.hero-logo-img {
    max-width: 1200px !important;
    width: 60%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 0.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
    z-index: 2;
}

.supported-text {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-marcellus);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 0.5s;
}

.gemcerey-logo {
    height: 1.1em;
    width: auto;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--text-color);
    margin-top: 10px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* =========================================
   4. About Section
   ========================================= */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.section-subtitle-top {
    text-align: center;
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.section-subtitle-bottom {
    text-align: center;
    color: var(--secondary-text);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-top: -40px;
    margin-bottom: 80px;
    font-family: var(--font-heading);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-jp);
    color: var(--accent-color);
    margin-top: -40px;
    margin-bottom: 60px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-family: var(--font-jp);
    font-size: 1.1rem;
    line-height: 2.4;
    letter-spacing: 0.05em;
    text-align: left;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.2;
}

.profile-label {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 0px !important;
    text-transform: uppercase;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-profiles-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.about-profile {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.about-profile .about-image {
    text-align: center;
}

.about-profile .about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.about-profile .about-text {
    padding-top: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-profile .about-text h3 {
    text-align: center;
}

@media (max-width: 768px) {
    .about-profiles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-profile {
        width: 100%;
    }

    .about-profile .about-image img {
        aspect-ratio: auto;
    }
}

/* =========================================
   5. Event Details Section
   ========================================= */
.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    /* max-width: 800px; */
    margin: 0 auto 60px auto;
}

.detail-item h3 {
    font-family: var(--font-jp);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(207, 195, 157, 0.3);
    padding-bottom: 10px;
}

.detail-item p {
    font-family: var(--font-jp);
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;

}

.detail-item .price {
    font-size: 1.0rem;
    font-family: var(--font-heading);
}

.detail-item .price span {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.detail-item .price strong {
    font-size: 1.0rem;
    font-weight: normal;
}

.detail-item .note {
    font-size: 0.85rem;
    color: #888;
}

.time-slot {
    margin-bottom: 15px !important;
}

.time-slot:last-child {
    margin-bottom: 0 !important;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.venue-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    vertical-align: bottom;
    margin-top: 5px;
}

.venue-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 4px;
    display: inline-block;
    min-width: 300px;
}

.venue-name {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.venue-time {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
}

.venue-time .label {
    font-size: 0.8rem;
    color: #888;
    margin-right: 5px;
}

.venue-time .sep {
    margin: 0 10px;
    color: #555;
    font-size: 0.9rem;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.map-link:hover {
    color: #fff;
    border-color: #fff;
}

.address {
    margin-top: 5px;
    font-size: 0.95rem !important;
}

.price-note {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 20px !important;
}

.ticket-note {
    margin-bottom: 10px !important;
}

.ticket-note.is-ended {
    color: #777;
}

.ticket-note:last-child {
    margin-bottom: 0 !important;
}

.status-label {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    border: 1px solid var(--accent-color);
    border-radius: 999px;
    font-family: var(--font-jp);
    line-height: 1.2;
    vertical-align: middle;
}

.status-label.is-ended {
    color: #888;
    border-color: #555;
}

.detail-cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.detail-cta-button:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(207, 195, 157, 0.4);
}

.benefit-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.benefit-info {
    width: 70%;
}

.benefit-image {
    width: 30%;
}

.benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.benefit-note {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
}

.benefit-note:last-child {
    margin-bottom: 0 !important;
}

.notes {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 4px;
    font-family: var(--font-jp);
}

.notes h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.note-list li {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 8px;
    padding-left: 1em;
    text-indent: -1em;
}

.note-list li:last-child {
    margin-bottom: 0;
}

/* =========================================
   6. Jewelry Section
   ========================================= */
.dark-bg {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
}

.jewelry-lead {
    text-align: center;
    font-family: var(--font-jp);
    margin-bottom: 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.jewelry-lead-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.jewelry-lead-images img {
    width: 40%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.jewelry-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.jewelry-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 90px;
    text-align: center;
    transition: 0.3s;
}

.jewelry-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.jewelry-item h3 {
    font-family: var(--font-jp);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.jewelry-item .item-type {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: var(--font-jp);
}

.jewelry-item .item-desc {
    font-size: 0.9rem;
    color: #aaa;
    font-family: var(--font-jp);
}

.jewelry-item .size-table {
    margin: 60px auto 0;
    width: 80%;
    border-collapse: collapse;
    font-family: var(--font-jp);
    font-size: 0.85rem;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jewelry-item .size-table th,
.jewelry-item .size-table td {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-weight: 400;
}

.jewelry-item .size-table caption {
    caption-side: top;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-family: var(--font-jp);
    font-size: 0.85rem;
    font-weight: 400;
}

.jewelry-item .item-note {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-family: var(--font-jp);
    margin-top: 40px;
    line-height: 1.6;
}

.jewelry-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.jewelry-images img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s;
    position: relative;
    z-index: 10000;
}

.jewelry-images img:hover {
    transform: scale(1.05);
    z-index: 10001;
}

/* Cursor for clickable images */
.js-modal-image {
    cursor: pointer;
}

.jewelry-image-wrapper {
    text-align: center;
}

.image-caption {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 10px;
    font-family: var(--font-jp);
}

.jewelry-benefit {
    background: rgba(207, 195, 157, 0.05);
    border: 1px solid var(--accent-color);
    padding: 90px;
    border-radius: 4px;
    text-align: center;
    font-family: var(--font-jp);
}

.benefit-title {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-family: var(--font-jp);
}

.benefit-desc {
    margin-bottom: 30px;
    line-height: 2;
}

.benefit-details {
    display: inline-block;
    text-align: left;
    /* background: rgba(0, 0, 0, 0.3); */
    padding: 20px 40px;
    border-radius: 4px;
}

.benefit-details dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 30px;
}

.benefit-details dt {
    color: var(--accent-color);
    font-weight: bold;
}

.benefit-details dd {
    margin: 0;
}

.benefit-coution {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-top: 30px;
    font-family: var(--font-jp);
}

.jewelry-venue {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-jp);
}

.venue-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* =========================================
   7. CTA Section
   ========================================= */
.cta-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
}

.ticket-schedule {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.schedule-block {
    text-align: center;
    font-family: var(--font-jp);
}

.schedule-block.is-extra {
    flex-basis: 100%;
    margin-top: 10px;
}

.schedule-block.is-ended {
    opacity: 0.6;
}

.schedule-block.is-ended h3 {
    color: #777;
}

.schedule-block.is-ended p {
    color: #888;
    margin-bottom: 3px;
}
.schedule-block h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cta-button-wrapper {
    text-align: center;
    margin: 80px auto 60px;
}

.ticket-note-group {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 25px;
    font-family: var(--font-jp);
}

.ticket-note-group .ticket-note {
    font-family: var(--font-jp);
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 33px 60px 30px;
    line-height: 1;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border-radius: 10px;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 30px rgba(213, 177, 158, 0.4);
}

.allergy-note {
    font-family: var(--font-jp);
    font-size: 0.9rem;
    color: #ccc;
    margin: 20px auto 0;
    line-height: 1.6;
}

.allergy-note strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    #cta .cta-button-wrapper {
        margin-bottom: 0;
    }

    .cta-button {
        padding: 23px 40px 20px;
    }
}

/* =========================================
   8. Schedule Section
   ========================================= */
.timeline {
    max-width: 600px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-item .time {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.timeline-item .event {
    font-family: var(--font-jp);
    font-size: 1.1rem;
}

.schedule-venue-info {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-jp);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.schedule-venue-info h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.schedule-venue-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}


.preorder-note{
    color: #888;;
}

.jewelry-lead .preorder-note{
    margin-top: 20px;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .jewelry-lead .preorder-note{
        font-size: 0.85em;
    }
}


.schedule-venue-info .preorder-note{
    font-size: 0.85rem;
}





/* =========================================
   9. Footer
   ========================================= */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-link {
    display: inline-block;
    margin-bottom: 30px;
    font-family: var(--font-jp);
    border-bottom: 1px solid #666;
    padding-bottom: 5px;
}

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

.copyright {
    font-size: 0.8rem;
    color: #555;
    font-family: var(--font-heading);
}

/* =========================================
   10. Image Modal
   ========================================= */
.image-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Flexbox for centering */
    align-items: center;
    justify-content: center;
}

.image-modal.show {
    opacity: 1;
    display: flex;
    /* Use flex when shown */
}

.modal-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Caption removed as per request */
#caption {
    display: none;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100001;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* =========================================
   11. Responsive Styles
   ========================================= */
@media (min-width: 1200px) {
    .about-slider {
        width: 1200px;
        margin-left: -100px;
        /* (1200 - 1000) / 2 * -1 */
    }
}

@media (max-width: 768px) {

    /* Utility */
    .sp-only {
        display: block;
    }

    .spbr {
        display: block;
    }

    .spnobr {
        display: none;
    }

    /* Hero */
    .hero-section {
        height: 100vh;
        height: 100svh;
        background-image: url('../assets/images/cover-sp.jpg');
    }

    .hero-logo-img {
        width: 80%;
    }

    .hero-content {
        margin-top: 10svh;
    }

    .supported-text {
        font-size: 0.85rem;
        gap: 10px;
        bottom: 80px;
    }

    .scroll-indicator .line {
        height: 40px;
    }

    .gemcerey-logo {
        height: 1em;
    }

    /* About */
    .section {
        padding: 50px 0;
    }

    .section-title {
        line-height: 1.4;
        font-size: 2rem;
        padding-bottom: 5px;
        margin-bottom: 69px;
    }

    .section-title::after {
        bottom: -10px;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 0.85em;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
    }

    .profile-label {
        text-align: center !important;
    }

    .about-slider {
        padding: 0 0 50px;
        margin-bottom: 0 !important;
    }

    .about-slider .swiper-wrapper {
        display: block;
    }

    .about-slider .swiper-slide {
        margin-bottom: 40px;
    }

    .about-slider .swiper-slide:last-child {
        margin-bottom: 0;
    }

    .about-slider .swiper-button-prev,
    .about-slider .swiper-button-next {
        display: none;
    }

    /* Event Details */
    .venue-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-item h3 {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .detail-item p {
        font-size: 1rem;
    }

    .detail-item img {
        vertical-align: bottom;
        margin-top: 0;
    }

    .venue-box {
        width: 100%;
        padding: 20px;
    }

    .venue-time {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .venue-time .sep {
        display: none;
    }

    .notes {
        padding: 20px;
    }

    /* Jewelry */
    .jewelry-lead {
        text-align: justify;
    }

    .jewelry-lead p {
        margin-bottom: 20px;
        font-size: 0.85em;
    }

    .jewelry-lead-images {
        margin-bottom: 20px;
    }

    .jewelry-lead-images img {
        width: 46%;
    }

    .jewelry-item {
        padding: 30px 15px;
    }

    .jewelry-item h3 {
        line-height: 1.5;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .jewelry-images {
        gap: 30px 15px;
    }

    .jewelry-item .size-table {
        width: 100%;
    }

    .jewelry-benefit {
        padding: 30px 20px;
    }

    .benefit-content {
        flex-direction: column;
        gap: 25px;
    }

    .benefit-info,
    .benefit-image {
        width: 100%;
    }

    .benefit-note {
        font-size: 0.85rem !important;
    }

    .benefit-desc {
        margin-bottom: 10px;
        line-height: 1.8;
        text-align: left;
    }

    .benefit-details {
        padding: 20px 0 0;
        background: none;
        font-size: 0.9rem;
    }

    /* CTA */
    .ticket-schedule {
        flex-direction: column;
        gap: 30px;
    }

    .schedule-block.is-ended {
        opacity: 0.6;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .schedule-block.is-ended h3 {
        color: #777;
        margin: 0 20px 0 0;
    }

    /* Schedule */
    .timeline-item .event {
        font-size: 1rem;
    }

    .schedule-venue-info {
        padding: 20px;
    }

    .schedule-venue-info p {
        font-size: 0.8rem;
    }

    #schedule .schedule-venue-info {
        margin-bottom: 0;
    }

    /* Footer */
    .footer {
        padding: 0 0 50px;
        border-top: none;
    }
}

@media only screen and (max-width: 768px) {
    .modal-content {
        width: 100%;
        /* Let container handle width */
    }

    .modal-image-container {
        max-width: 85%;
        /* Slightly smaller on mobile to ensure close button fits? */
    }

    .close-modal {
        position: absolute;
        top: -50px;
        right: 0;
        font-size: 35px;
    }
}
