/* ── About Us Section Redesign ── */
.about-section {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-dark) 180px, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 180px 0 100px 0;
    margin-top: -180px;
    z-index: 2;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 60px 1.1fr 1fr;
    gap: 40px;
}

/* Left Vertical Text */
.about-vertical-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 15px;
    margin-top: 10px;
    justify-self: center;
}

/* Main Left Column */
.about-left-col {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-family: 'Amanojaku', 'serif';
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-light);
    padding-right: 20px;
}

.about-brand-name {
    font-family: 'Amanojaku', serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: auto;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Cultural Showcase Cards (Now inside left column) */
.about-culture-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.culture-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.culture-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.65);
}

.culture-card:hover .culture-bg {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.culture-content {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.culture-flag {
    width: 35px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.culture-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 0 5px;
}

/* Right Side Column */
.about-right-col {
    display: flex;
    flex-direction: column;
}

.about-image-content {
    width: 100%;
    margin-bottom: 25px;
}

.about-house-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.about-stats-container {
    display: flex;
    justify-content: center;
    /* Groups them together */
    gap: 40px;
    /* You can adjust this gap now! */
    margin-top: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-light);
}

.stat-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--text-light);
}

.about-tagline-jp {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-align: center;
    letter-spacing: 5px;
    margin-top: 5px;
}

/* Optimized, lighter reveal animation for About Us section */
.about-section .reveal {
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Faster delay for staggered animation */
.delay-1 {
    transition-delay: 0.05s;
}

.delay-2 {
    transition-delay: 0.1s;
}

.delay-3 {
    transition-delay: 0.15s;
}

.delay-4 {
    transition-delay: 0.2s;
}

/* ── Featured Menu Section ── */
.featured-menu-section {
    padding: var(--section-padding) 0 20px 0;
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.featured-menu-section .section-title {
    font-family: 'Amanojaku', serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    line-height: 1;
}

.japanese-title {
    font-size: 4rem;
    color: var(--accent-red-deep);
    font-weight: 900;
    margin-bottom: 0px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
    letter-spacing: 10px;

}

/* ── Decorative House Images ── */
.menu-deco-house {
    position: absolute;
    width: 280px;
    height: auto;
    opacity: 0.15;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%);
}

.menu-deco-house-left {
    left: 0;
}

.menu-deco-house-right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

/* ── Menu Grid Layout ── */
.menu-grid-container {
    position: relative;
    max-width: var(--menu-grid-max);
    margin: 0 auto;
    padding-top: 10px;
}

/* ── Carousel ── */
.menu-cards-row {
    position: relative;
    width: 100%;
    max-width: var(--carousel-max);
    height: 440px;
    margin: 10px auto 30px auto;
    overflow: visible;
}

.menu-card {
    width: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition:
        transform var(--transition-carousel),
        opacity var(--transition-carousel),
        box-shadow var(--transition-carousel),
        z-index 0s;
}

.card-left {
    transform: translate(calc(-50% - 320px), -50%) scale(0.88);
    z-index: 1;
    opacity: 1;
}

.card-center {
    transform: translate(-50%, -52%) scale(1.08);
    z-index: 3;
    opacity: 1;
}

.card-right {
    transform: translate(calc(-50% + 320px), -50%) scale(0.88);
    z-index: 1;
    opacity: 1;
}

/* ── Featured Drinks Section ── */
.featured-drinks-section {
    padding: 30px 0 100px 0;
    background-color: var(--white-bg);
    position: relative;
}

.featured-drinks-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(80% + 200px);
    /* extends into the next section */
    background-image: url('../assets/images/background of featured drinks.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.featured-drinks-section .container {
    position: relative;
    z-index: 2;
}

.drinks-header {
    margin-bottom: 60px;
}

.drinks-title-jp {
    font-size: 3rem;
    color: var(--accent-red);
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 10px;
    line-height: 1.2;
}

.drinks-title-en {
    font-family: 'Amanojaku', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.drinks-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.drink-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 280px;
    height: 370px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

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

.drink-img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.drink-info {
    padding: 10px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drink-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.drink-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-light);
}

/* Gin Card */
.gin-card {
    background-color: #fbe4d9;
}

.gin-card .drink-info {
    background-color: #f15d7f;
    color: var(--text-color);
}

.gin-card .drink-name,
.gin-card .drink-desc {
    color: var(--text-color);
}

/* Whisky Card */
.whisky-card {
    background-color: #e4cc6d;
    transform: scale(1.08);
}

.whisky-card:hover {
    transform: scale(1.08) translateY(-10px);
}

.whisky-card .drink-info {
    background-color: #e4cc6d;
    color: var(--text-color);
}

.whisky-card .drink-name {
    color: #a40b18;
    /* Dark red title */
}

.whisky-card .drink-desc {
    color: var(--text-color);
}

/* Wine Card */
.wine-card {
    background-color: #c51f2d;
}

.wine-card .drink-info {
    background-color: #c51f2d;
    color: var(--text-color);
}

.wine-card .drink-name,
.wine-card .drink-desc {
    color: var(--text-color);
}

/* ── Events Preview Section ── */
.events-preview-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--white-bg);
}

.events-container {
    position: relative;
    z-index: 4;
    max-width: 1100px;
    margin: 0 auto;

}

/* Headers */
.events-header {
    margin-bottom: 80px;
}

.events-title-en {
    font-family: 'Amanojaku', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    letter-spacing: 2px;
    line-height: 1;
}

.events-title-jp {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 10px;
    color: var(--accent-red-deep);
    line-height: 1.2;
    margin-top: -60px;
    margin-bottom: 20px;
}

/* Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 50px;
    margin-top: -40px;
    align-items: center;
}

.events-col {
    display: flex;
    flex-direction: column;
}

/* Images */
.events-img-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.events-img {
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(0.85) contrast(1.1);
}

.img-left,
.img-right {
    height: 350px;
}

.img-center {
    height: 500px;
}

/* Vertical Tags overlay */
.events-vertical-tag {
    position: absolute;
    top: 20%;
    right: -20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 8px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.events-tag-bottom {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Text & Descriptions */
.events-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.desc-left {
    margin-top: 20px;
    text-align: justify;
}

.desc-right {
    margin-bottom: 20px;
    text-align: left;
}

.events-center-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 3px;
    color: #111;
    /* Extremely dark grey */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1);
}

.card-center .menu-card-inner {
    box-shadow: var(--shadow-xl);
}

.menu-card-inner {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 30px 20px 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-height: 370px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.card-img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
    margin-top: 10px;
}

.menu-card .card-title {
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 10px;
    font-family: 'Cinzel Decorative', 'serif';
    margin-bottom: 5px;
}

.menu-card .card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 5px 0 15px;
    padding: 0 10px;
}

.card-btn {
    background-color: var(--accent-red);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    bottom: -22px;
    left: 20px;
    right: 20px;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s ease;
    z-index: 2;
    border-radius: var(--radius-pill);
}

.card-btn:hover {
    background-color: var(--accent-red-hover);
}

.carousel-see-more {
    margin-top: 40px;
}

.see-more-text {
    color: var(--accent-red);
    font-weight: 800;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.see-more-text:hover {
    color: var(--accent-red-hover);
}

/* ── Responsive: Tablet (≤1024px) ── */
@media (max-width: 1024px) {


    /* About Us */
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-vertical-text {
        writing-mode: horizontal-tb;
        font-size: 2.5rem;
        letter-spacing: 15px;
        margin-top: 0;
        text-align: center;
        justify-self: center;
    }

    .about-description {
        font-size: 1rem;
        padding-right: 0;
    }

    .about-title {
        font-size: 3rem;
    }

    .about-image-content {
        max-width: 600px;
        margin: 0 auto 30px auto;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .about-culture-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .events-col-right {
        grid-column: 1 / -1;
    }

    .events-col-right .events-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .img-center {
        height: 400px;
    }

    .discover-english-header {
        font-size: 2rem;
    }

    /* Drinks Section */
    .drinks-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .drink-card,
    .whisky-card {
        width: 220px;
        height: 300px;
        max-width: none;
    }

    .drink-img {
        height: 160px;
    }

    .drink-info {
        padding: 10px;
    }

    .drink-name {
        font-size: 1.2rem;
    }

    .drink-desc {
        font-size: 0.5rem;
    }

    .events-title-jp {
        font-size: 3rem;
    }

    /* Menu carousel */
    .menu-side-title {
        display: none;
    }

    .menu-deco-house {
        width: 180px;
    }

    .menu-cards-row {
        height: 360px;
    }

    .menu-card {
        width: 220px;
    }

    .menu-card-inner {
        height: 300px;
        padding: 20px 15px 45px;
    }

    .card-img {
        max-width: 130px;
        max-height: 130px;
    }

    .card-left {
        transform: translate(calc(-50% - 240px), -50%) scale(0.85);
    }

    .card-center {
        transform: translate(-50%, -55%) scale(1.05);
    }

    .card-right {
        transform: translate(calc(-50% + 240px), -50%) scale(0.85);
    }
}

/* ── Responsive: Mobile landscape (≤768px) ── */
@media (max-width: 768px) {


    /* About Us */
    .about-vertical-text {
        font-size: 2rem;
        letter-spacing: 10px;
    }

    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-brand-name {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-stats-container {
        flex-direction: row;
        justify-content: center;
        /* Centers them on mobile */
        align-items: flex-start;
        gap: 20px;
        /* Adjust this for mobile gap */
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .about-tagline-jp {
        text-align: center;
        font-size: 2rem;
    }

    .about-culture-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Events */
    .events-preview-section {
        padding: 60px 0;
    }

    .events-header {
        margin-bottom: 40px;
    }

    /* Drinks Section */
    .drinks-title-jp {
        font-size: 2.2rem;
    }

    .drinks-title-en {
        font-size: 2rem;
    }

    .drinks-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 0 10px;
    }

    .drink-card,
    .whisky-card {
        width: 160px;
        height: 240px;
        max-width: none;
    }

    .drink-img {
        height: 120px;
    }

    .drink-info {
        padding: 5px 8px;
    }

    .drink-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
        letter-spacing: 1px;
    }

    .drink-desc {
        font-size: 0.45rem;
        line-height: 1.2;
    }

    /* Events Section — 2 column layout on tablet */
    .events-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        margin-top: 20px;
        gap: 20px;
    }

    /* Left column: spans left side */
    .events-col-left {
        grid-column: 1;
        grid-row: 1;
    }

    /* Center column: spans both columns on the second row */
    .events-col-center {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .events-col-center .center-wrapper {
        flex: 1;
        margin-bottom: 0;
    }

    .events-col-center .events-center-title {
        flex: 0 0 auto;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 1.2rem;
        letter-spacing: 5px;
        margin-top: 0;
    }

    /* Right column: spans right side */
    .events-col-right {
        grid-column: 2;
        grid-row: 1;
    }

    .events-col-right .events-img-wrapper {
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .img-left,
    .img-right {
        height: 220px;
    }

    .img-center {
        height: 280px;
    }

    .events-title-en {
        font-size: 1.5rem;
    }

    .events-title-jp {
        font-size: 2.5rem;
        letter-spacing: 5px;
        margin-top: 2px;
    }

    .events-desc {
        font-size: 0.75rem;
        text-align: center;
    }

    .events-center-title {
        font-size: 1.5rem;
    }

    .events-vertical-tag {
        font-size: 0.85rem;
        padding: 12px 6px;
        right: -12px;
    }

    .events-tag-bottom {
        font-size: 0.85rem;
        padding: 3px 12px;
    }

    /* Menu carousel */
    .menu-deco-house {
        width: 120px;
        opacity: 0.1;
    }

    .menu-cards-row {
        margin-top: 20px;
        height: 300px;
    }

    .menu-card {
        width: 160px;
    }

    .menu-card-inner {
        min-height: 200px;
        height: auto;
        padding: 15px 10px 35px;
    }

    .card-img {
        max-width: 100px;
        max-height: 100px;
    }

    .menu-card .card-title {
        font-size: 0.8rem;
    }

    .menu-card .card-desc {
        font-size: 0.45rem;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .card-btn {
        height: 35px;
        font-size: 0.75rem;
        bottom: -17px;
        left: 10px;
        right: 10px;
    }

    .card-left {
        transform: translate(calc(-50% - 175px), -50%) scale(0.85);
    }

    .card-center {
        transform: translate(-50%, -55%) scale(1.05);
    }

    .card-right {
        transform: translate(calc(-50% + 175px), -50%) scale(0.85);
    }

    /* ── Mobile Gallery Editorial Layout ── */
    .gallery-section .gallery-flex-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 0.77fr 1fr;
        gap: 6px;
        width: 75%;
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 1 / 1.05;
    }

    .gallery-section .g-col {
        display: contents;
    }

    .gallery-section .gallery-item {
        display: none;
    }

    .gallery-section .gallery-item[class*="editorial-item-"] {
        display: block;
        aspect-ratio: unset !important;
        border-radius: var(--radius-sm);
        height: 100%;
        width: 100%;
    }

    /* Top-left: Tall */
    .gallery-section .editorial-item-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Top-right: Wide */
    .gallery-section .editorial-item-2 {
        grid-column: 2;
        grid-row: 1 / 2;
    }

    /* Bottom-left: Wide */
    .gallery-section .editorial-item-3 {
        grid-column: 1;
        grid-row: 3 / 4;
    }

    /* Bottom-right: Tall */
    .gallery-section .editorial-item-4 {
        grid-column: 2;
        grid-row: 2 / 4;
    }

    .gallery-section .gallery-item .gallery-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }
}

/* ── Responsive: Small mobile (≤480px) ── */
@media (max-width: 480px) {


    /* About Us */
    .about-vertical-text {
        display: none;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.85rem;
    }

    .about-stats-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.65rem;
    }

    .about-house-img {
        border-radius: var(--radius-sm);
    }

    .events-preview-section {
        padding: 40px 0;
    }

    .events-header {
        margin-bottom: 30px;
    }

    .events-title-en {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .events-title-jp {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-top: -10px;
    }

    /* Events grid — stay 2-col on small mobile, stack center image below */
    .events-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        margin-top: 10px;
        gap: 12px;
    }

    .events-col-left {
        grid-column: 1;
        grid-row: 1;
    }

    .events-col-right {
        grid-column: 2;
        grid-row: 1;
    }

    .events-col-center {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: column;
        align-items: center;
    }

    .events-col-center .center-wrapper {
        width: 100%;
    }

    .events-col-center .events-center-title {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 1rem;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    .img-left,
    .img-right {
        height: 150px;
    }

    .img-center {
        height: 220px;
    }

    .events-desc {
        font-size: 0.65rem;
    }

    .events-vertical-tag {
        font-size: 0.8rem;
        padding: 10px 5px;
        right: -10px;
    }

    .events-tag-bottom {
        font-size: 0.85rem;
        padding: 3px 12px;
    }

    .events-center-title {
        font-size: 1.2rem;
    }

    /* Menu carousel */
    .menu-deco-house {
        display: none;
    }

    .menu-cards-row {
        margin-top: -10px;
        height: 230px;
    }

    .menu-card {
        width: 120px;
    }

    .menu-card-inner {
        min-height: 150px;
        height: auto;
        padding: 10px 8px 30px;
        border-radius: var(--radius-sm);
    }

    .card-img {
        max-width: 75px;
        max-height: 75px;
    }

    .menu-card .card-title {
        font-size: 0.65rem;
    }

    .menu-card .card-desc {
        font-size: 0.45rem;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .card-btn {
        height: 30px;
        font-size: 0.65rem;
        bottom: -15px;
        left: -5px;
        right: -5px;
        border-radius: 15px;
        white-space: nowrap;
    }

    .card-left {
        transform: translate(calc(-50% - 130px), -50%) scale(0.85);
    }

    .card-center {
        transform: translate(-50%, -55%) scale(1.05);
    }

    .card-right {
        transform: translate(calc(-50% + 130px), -50%) scale(0.85);
    }

    .japanese-title {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .featured-menu-section .section-title {
        font-size: 1.5rem;
    }

    .carousel-see-more {
        margin-top: 20px;
    }

    .see-more-text {
        font-size: 1.3rem;
    }

    /* Drinks Section */
    .featured-drinks-section {
        padding: 5px 0;
    }

    .featured-drinks-section::after {
        top: -80px;
    }

    .drinks-title-jp {
        font-size: 1.8rem;
        margin-top: -30px;
    }

    .drinks-title-en {
        font-size: 1.5rem;
        margin-bottom: 70px;
    }

    .drinks-grid {
        margin-top: -50px;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 5px;
    }

    .drink-card,
    .whisky-card {
        width: 110px;
        height: 180px;
        border-radius: var(--radius-sm);
        margin-top: 0;
        margin-bottom: 0;
        max-width: none;
    }

    .drink-img {
        height: 100px;
        padding: 5px;
    }

    .drink-info {
        padding: 4px;
    }

    .drink-name {
        font-size: 1rem;
        margin-bottom: 2px;
        letter-spacing: 0px;
    }

    .drink-desc {
        font-size: 0.5rem;
        line-height: 1.1;
    }
}

/* ═══════════════════════════════════════════
   ── Gallery Section ──
═══════════════════════════════════════════ */

.gallery-section {
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding: 70px 0 240px 0;
    margin-bottom: -100px;
    /* bottom pad makes room for cherry blossoms */
}

.gallery-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ── Header ── */
.gallery-header {
    margin-bottom: 36px;
}

.gallery-title {
    font-family: 'Amanojaku', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1;
}

.gallery-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Mosaic Wrapper ── */
.gallery-mosaic-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* 天井桟敷 kanji — floats over the top-left of the grid */
.gallery-kanji {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-red-deep);
    line-height: 1.1;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════
   ── Gallery Flex Masonry Layout ──
══════════════════════════════════════════════ */

.gallery-flex-container {
    display: flex;
    align-items: center;
    /* Vertically centers all columns */
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.g-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    /* Equal width columns */
}

/* Aspect ratio utilities */
.ar-3-4 {
    aspect-ratio: 3 / 4;
}

.ar-2-3 {
    aspect-ratio: 2 / 3;
}

.ar-4-5 {
    aspect-ratio: 4 / 5;
}

.ar-16-9 {
    aspect-ratio: 16 / 9;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #777;
    cursor: pointer;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.07);
}

/* ── Gallery Lightbox Modal ── */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: zoom-out;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ── Cherry Blossom Decorations ──
   Anchored to the section (position:relative) not to gallery-inner */
.gallery-blossom-left,
.gallery-blossom-right {
    position: absolute;
    bottom: 200px;
    width: 52%;
    height: 230px;
    overflow: hidden;
    pointer-events: none;
}

.gallery-blossom-left {
    left: 0;
}

.gallery-blossom-right {
    right: 0;
}

.blossom-img {
    position: absolute;
    bottom: 0;
    height: 230px;
    width: auto;
    max-width: none;
}

.blossom-left {
    left: 0;
}

.blossom-right {
    right: 0;
    transform: scaleX(-1);
}

/* mirror for right side */

/* ═══════════════════════════════════════════
   ── Home Reservation Section ──
═══════════════════════════════════════════ */
.home-reservation-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.reservation-red-bg {
    background-image: url('../assets/images/try.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -142px;
    padding: 200px 0;
    width: 100%;
}

.reservation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Left: Images */
.reservation-images {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.res-pic {
    position: absolute;
    width: 260px;
    height: 320px;
    object-fit: cover;
    border: 12px solid #fff;
    border-bottom-width: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.res-pic.pic1 {
    transform: rotate(-8deg) translateX(-50px);
    z-index: 1;
}

.res-pic.pic2 {
    transform: rotate(6deg) translateX(50px);
    z-index: 2;
}

.reservation-images:hover .pic1 {
    transform: rotate(-10deg) translateX(-60px) scale(1.02);
}

.reservation-images:hover .pic2 {
    transform: rotate(8deg) translateX(60px) scale(1.02);
}

.res-circle-cutout {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-color: #dfdfdf;
    border-radius: 50%;
    z-index: 3;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Right: Content */
.reservation-content {
    flex: 1;
    color: #fff;
    max-width: 480px;
}

.res-title-en {
    font-family: 'Amanojaku', serif;
    font-size: 2.2rem;
    color: var(--text-light);
    letter-spacing: 3px;
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.res-title-jp {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.res-desc {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.res-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.res-btn:hover {
    background-color: #fff;
    color: var(--accent-red-deep);
}

/* ── Gallery Responsive ── */
@media (max-width: 1024px) {
    .gallery-kanji {
        font-size: 3.5rem;
        left: 0;
    }

    .gallery-title {
        font-size: 2.1rem;
    }

    .gallery-title-g {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding-bottom: 180px;
    }

    .gallery-flex-container {
        gap: 8px;
        /* Tighter gap on tablet to fit 5 columns better */
    }

    .g-col {
        gap: 8px;
    }

    /* Kanji goes static above grid on mobile */
    .gallery-kanji {
        position: static;
        display: block;
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .blossom-img {
        height: 180px;
    }

    .gallery-blossom-left,
    .gallery-blossom-right {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0 140px;
    }

    .gallery-inner {
        padding: 0 15px;
        /* Less padding on mobile to give pictures more room */
    }

    .gallery-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .gallery-title-g {
        font-size: 1.9rem;
    }

    .gallery-subtitle {
        font-size: 0.78rem;
    }

    .gallery-kanji {
        font-size: 2rem;
    }

    .gallery-flex-container {
        gap: 5px;
        /* Very tight gap for tiny mosaic */
    }

    .g-col {
        gap: 5px;
    }

    .blossom-img {
        margin-top: -200px;
        height: 70px;
    }

    .gallery-blossom-left,
    .gallery-blossom-right {
        height: 130px;
    }
}

/* ── Home Reservation Responsive ── */
@media (max-width: 992px) {

    /* Remove the negative overlap on tablet/mobile so content isn't clipped */
    .reservation-red-bg {
        margin-top: 0;
        padding: 140px 0 120px;
    }

    .reservation-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Tall enough to fully contain the 260x320 rotated photos */
    .reservation-images {
        height: 420px;
        width: 100%;
        overflow: hidden;
    }

    .res-circle-cutout {
        bottom: 0px;
    }

    .res-title-jp {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .home-reservation-section {
        padding-bottom: 20px;
    }

    .reservation-red-bg {
        padding: 120px 0 140px;
    }

    .reservation-container {
        gap: 16px;
    }

    /* Photos are 100x130px — need ~200px height to contain rotated+translated */
    .reservation-images {
        height: 200px;
        width: 100%;
        overflow: hidden;
    }

    .res-pic {
        width: 90px;
        height: 115px;
        border-width: 5px;
        border-bottom-width: 16px;
    }

    .res-pic.pic1 {
        transform: rotate(-8deg) translateX(-22px);
    }

    .res-pic.pic2 {
        transform: rotate(6deg) translateX(22px);
    }

    .res-circle-cutout {
        width: 40px;
        height: 40px;
        bottom: 0;
    }

    .res-title-en {
        font-size: 1.8rem;
    }

    .res-title-jp {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .res-desc {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .res-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .reservation-red-bg {
        padding: 120px 0 120px;
    }

    .reservation-container {
        padding: 0 15px;
        gap: 12px;
    }

    /* Photos are 80x100px — 180px container contains them with rotation */
    .reservation-images {
        height: 180px;
        overflow: hidden;
    }

    .res-pic {
        width: 80px;
        height: 100px;
        border-width: 4px;
        border-bottom-width: 12px;
    }

    .res-pic.pic1 {
        transform: rotate(-8deg) translateX(-18px);
    }

    .res-pic.pic2 {
        transform: rotate(6deg) translateX(18px);
    }

    .res-circle-cutout {
        width: 32px;
        height: 32px;
        bottom: 0;
    }

    .res-title-en {
        font-size: 1.5rem;
    }

    .res-title-jp {
        font-size: 1.5rem;
    }

    .res-desc {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .res-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════
   ── Testimonials Section ──
═══════════════════════════════════════════ */

.testimonials-section {
    margin-top: -100px;
    background-color: var(--dark-bg);
    padding: 150px 0 100px 0;
    overflow: hidden;

}

.testimonials-section .events-title-en {
    color: #fff;
}

.testimonials-wrapper {
    margin-top: 40px;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 20px;
    overflow: visible;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    will-change: transform;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    min-height: 280px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.testimonial-label {
    font-family: sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
    margin-bottom: auto;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonial-rating {
    margin-top: 15px;
    margin-bottom: auto;
    font-size: 0.85rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
    /* Always reserves space — card height never changes */
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-rating {
    opacity: 1;
}

.testimonial-rating .stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.testimonial-rating .score {
    font-weight: 600;
    color: #fff;
}

.testimonial-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #333;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.author-title {
    font-family: sans-serif;
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 2px;
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
    font-family: serif;
    opacity: 0.9;
    margin-bottom: -10px;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(162, 255, 203, 0.15) 0%, rgba(255, 175, 204, 0.1) 50%, rgba(255, 240, 160, 0.05) 100%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 350px;
    }
}

/* ── Testimonials Responsive ── */
@media (max-width: 600px) {
    .testimonials-section {
        padding: 120px 0 60px 0;
    }

    .testimonials-section .events-title-en {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .testimonials-scroll {
        gap: 14px;
    }

    .testimonial-card {
        width: 220px;
        min-height: 210px;
        padding: 20px;
        border-radius: 14px;
    }

    .testimonial-label {
        font-size: 0.58rem;
        margin-bottom: 14px;
    }

    .testimonial-quote {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .testimonial-rating {
        font-size: 0.72rem;
        height: 16px;
    }

    .testimonial-footer {
        margin-top: 18px;
    }

    .author-avatar {
        width: 30px;
        height: 30px;
    }

    .author-name {
        font-size: 0.75rem;
    }

    .author-title {
        font-size: 0.62rem;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: -6px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 80px 0 50px 0;
        margin-top: -60px;
    }

    .testimonials-section .events-title-en {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .testimonials-scroll {
        gap: 12px;
    }

    .testimonial-card {
        width: 190px;
        min-height: 185px;
        padding: 16px;
        border-radius: 12px;
    }

    .testimonial-label {
        font-size: 0.55rem;
        margin-bottom: 10px;
        letter-spacing: 0.03em;
    }

    .testimonial-quote {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .testimonial-rating {
        height: 14px;
        font-size: 0.68rem;
        margin-top: 10px;
        gap: 5px;
    }

    .testimonial-footer {
        margin-top: 14px;
    }

    .testimonial-author {
        gap: 8px;
    }

    .author-avatar {
        width: 26px;
        height: 26px;
    }

    .author-name {
        font-size: 0.7rem;
    }

    .author-title {
        font-size: 0.58rem;
    }

    .quote-icon {
        font-size: 1.6rem;
        margin-bottom: -4px;
    }
}

@media (max-width: 360px) {
    .testimonial-card {
        width: 165px;
        min-height: 165px;
        padding: 14px;
    }

    .testimonial-quote {
        font-size: 0.75rem;
    }

    .author-avatar {
        width: 22px;
        height: 22px;
    }
}

/* ═══════════════════════════════════════════
   ── Contacts Section ──
═══════════════════════════════════════════ */
.contact-section {
    background-color: var(--white-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Branch */
.contact-blossom-left {
    position: absolute;
    left: -50px;
    top: 40%;
    transform: translateY(-50%) rotate(15deg);
    width: 350px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

/* Left: Information */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 100px;
}

.contact-title {
    font-family: 'Amanojaku', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-subtitle .red-text {
    color: var(--accent-red);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--text-dark);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Center: Red Circle with overflowing Japanese text */
.contact-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    flex: 0 0 auto;
    width: 180px;
}

.contact-red-circle {
    width: 180px;
    height: 180px;
    background-color: #c51f2d;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(197, 31, 45, 0.4);
}

.contact-jp-vertical {
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: var(--text-dark);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 20px;
}

/* Right: Map */
.contact-map {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.map-wrapper {
    width: 100%;
    max-width: 600px;
    background-color: var(--white-bg);
    padding: 8px;
    border: 1px solid var(--accent-red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(197, 31, 45, 0.2);
    z-index: 0;
    pointer-events: none;
}

.contact-map-iframe {
    width: 100%;
    height: 400px;
    display: block;
    position: relative;
    z-index: 1;
    /* Pure grayscale to look clean, bright, and elegant on the white background */
    filter: grayscale(20%) contrast(1.05) opacity(0.85);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .contact-info {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        align-items: center;
        text-align: left;
    }

    .contact-blossom-left {
        left: -150px;
        opacity: 0.3;
    }

    .contact-center {
        height: 250px;
    }

    .contact-jp-vertical {
        font-size: 2.5rem;
        letter-spacing: 15px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .contact-center {
        height: 180px;
    }

    .contact-red-circle {
        width: 110px;
        height: 110px;
    }

    .contact-jp-vertical {
        font-size: 1.6rem;
        letter-spacing: 8px;
    }

    .contact-text {
        font-size: 0.7rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-blossom-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-map-iframe {
        height: 280px;
    }
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */
.promotions-section {
    padding: 60px 0;
    background-color: #000;
}

.promotions-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}

.promotions-header .japanese-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

.promotions-header .english-header {
    font-size: 1.8rem;
    font-family: 'Amanojaku', serif;
    letter-spacing: 3px;
    color: var(--text-light);
}

.promotions-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-banner {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.promo-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.promo-banner .promo-title {
    font-family: 'The Last Shuriken', serif;
    letter-spacing: 2px;
    font-size: 2.2rem;
    color: #111;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-banner .promo-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
}

/* Banner 1: Drink All You Can */
.banner-drink {
    background: linear-gradient(to right, rgba(245, 245, 245, 0.95), rgba(220, 220, 220, 0.85)), url('../assets/images/form background.webp') center/cover;
    justify-content: space-between;
    padding-right: 50px;
}

.promo-drink-left {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-left: 20px;
}

.promo-bottle {
    height: 90%;
    object-fit: contain;
    position: absolute;
    bottom: 5%;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.promo-banner:hover .promo-bottle {
    transform: scale(1.05) translateY(-5px);
}

.promo-bottle-1 {
    left: 10%;
    z-index: 1;
    height: 75%;
}

.promo-bottle-2 {
    left: 30%;
    z-index: 3;
    height: 85%;
}

.promo-bottle-3 {
    left: 50%;
    z-index: 2;
    height: 70%;
}

.promo-bottle-4 {
    left: 65%;
    z-index: 1;
    height: 60%;
}

.promo-drink-right {
    width: 50%;
    text-align: right;
    z-index: 5;
}

/* Banner 2: Karaoke */
.banner-karaoke {
    background: linear-gradient(135deg, #d11232 0%, #a00b25 100%);
    color: var(--text-light);
    justify-content: center;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin: 15px 0;
    height: 270px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(209, 18, 50, 0.3);
}

.banner-karaoke .promo-title,
.banner-karaoke .promo-price {
    color: var(--text-light);
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.promo-karaoke-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.promo-record {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.6));
    animation: spin-record 20s linear infinite;
}

@keyframes spin-record {
    100% {
        transform: rotate(360deg);
    }
}

.promo-karaoke-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-sub-price {
    font-family: 'The Last Shuriken', serif;
    letter-spacing: 2px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.music-note-icon {
    display: inline-block;
    font-size: 1.2rem;
    margin: 0 5px;
}

.promo-karaoke-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110%;
}

.promo-singer {
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.6));
    opacity: 0.95;
}

/* Banner 3: Car Service */
.banner-car {
    background: linear-gradient(110deg, #d11232 45%, transparent 45%),
        linear-gradient(110deg, transparent 75%, #111 75%),
        #f5f5f5;
    justify-content: space-between;
}

.promo-car-left {
    width: 45%;
    padding-left: 30px;
    z-index: 2;
}

.promo-car-left .promo-title {
    font-family: 'The Last Shuriken', serif;
    color: var(--text-light);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.promo-car-right {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.promo-car-img {
    width: 100%;
    max-width: 350px;
    object-fit: contain;
    filter: drop-shadow(-15px 20px 25px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.promo-banner:hover .promo-car-img {
    transform: translateX(-15px) scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .promo-banner {
        height: 200px;
        border-radius: 16px;
    }

    .banner-karaoke {
        height: 220px;
    }

    .promo-banner .promo-title {
        font-size: 1.5rem;
    }

    .promo-banner .promo-price {
        font-size: 1.8rem;
    }

    .banner-drink {
        padding-right: 20px;
    }

    .promo-drink-left {
        width: 45%;
    }

    .promo-bottle-1 {
        left: -10%;
        height: 65%;
    }

    .promo-bottle-2 {
        left: 10%;
        height: 75%;
    }

    .promo-bottle-3 {
        left: 30%;
        height: 60%;
    }

    .promo-bottle-4 {
        left: 45%;
        height: 50%;
    }

    .promo-karaoke-left {
        left: -80px;
        width: 180px;
    }

    .promo-sub-price {
        font-size: 1.2rem;
    }

    .banner-car {
        background: linear-gradient(110deg, #d11232 55%, transparent 55%),
            linear-gradient(110deg, transparent 80%, #111 80%),
            #f5f5f5;
    }

    .promo-car-left {
        width: 55%;
        padding-left: 15px;
    }

    .promo-car-left .promo-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promotions-header .japanese-header {
        font-size: 1.8rem;
    }

    .promotions-header .english-header {
        font-size: 1.4rem;
    }

    .promo-banner {
        height: 160px;
    }

    .banner-karaoke {
        height: 180px;
    }

    .promo-banner .promo-title {
        font-size: 1.1rem;
    }

    .promo-banner .promo-price {
        font-size: 1.3rem;
    }

    .banner-drink {
        padding-right: 15px;
    }

    .promo-karaoke-left {
        left: -60px;
        width: 140px;
    }

    .promo-car-left .promo-title {
        font-size: 0.8rem;
    }
}