/* ==========================================================================
           Design System & Variables - Blue / Yellow / White Theme
           ========================================================================== */
:root {
    /* Color Palette */
    --clr-base: #ffffff;
    /* White */
    --clr-accent: #1259a7;
    /* Blue */
    --clr-sub: #f2c94c;
    /* Yellow */
    --clr-dark: #08366c;
    /* Deep Blue */
    --clr-text: #163b64;
    /* Main Text Color */

    --reve-accent-color: var(--clr-accent);
    --reve-text-color: var(--clr-text);
    --reve-section-title-size: 72px;

    /* Typography */
    --ff-jp-sans: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --ff-jp-serif: 'Zen Kaku Gothic New', 'Noto Serif JP', serif;
    --ff-en-fancy: 'Josefin Sans', sans-serif;
    --ff-en-cursive: 'Dancing Script', cursive;

    /* Base Values */
    --line-height: 1.8;
    --ls: 0.05em;
    --section-gap: 160px;
    --side-padding: 3vw;
    --header-height: 80px;
}

.reve-font-roboto {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: var(--reve-section-title-size);
    letter-spacing: 0;
    line-height: 1.1;
}

.reve-font-serif {
    font-family: var(--ff-jp-serif);
    font-weight: 400;
}

.section-padding {
    padding: 100px 0;
}

.container-custom {
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.img-container {
    overflow: hidden;
    background-color: #eee;
    position: relative;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div {
    border-radius: 0 !important;
}

/* --- Premium Custom Styles --- */
h1,
h2,
h3,
h4,
h5,
h6,
.reve-font-roboto,
.reve-font-serif,
.reve-font-playfair,
.menu__group-title,
.menu__item-title,
.voice h2,
.contact h2 {
    font-weight: 400 !important;
}

/* Recommend Image */
.menu__recommend-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: var(--clr-sub) !important;
    border: 2px solid var(--clr-dark) !important;
    color: var(--clr-dark) !important;
    padding: 0.65rem 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 4px 4px 0 var(--clr-dark);
}

.menu__recommend-image {
    border-radius: 0 !important;
    animation: none !important;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    flex: 0 0 55% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
    background: transparent !important;
    border: 6px solid var(--clr-sub);
}

.menu__recommend-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: static !important;
}

/* --- Premium Animations --- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

.anim-img-reveal {
    overflow: hidden;
    position: relative;
}

.anim-img-reveal img {
    transform: scale(1.15);
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-img-reveal.is-active img {
    transform: scale(1);
}

/* ==========================================================================
           Reset & Base Styles
           ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
    overflow-x: hidden;
}

body {
    background-color: var(--clr-base);
    color: var(--clr-text);
    font-family: var(--ff-jp-sans);
    line-height: var(--line-height);
    letter-spacing: var(--ls);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
           Animations
           ========================================================================== */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fade.is-active {
    opacity: 1;
    transform: none;
}

.js-premium-reveal {
    opacity: 0;
    transform: translateY(20px) scale(1.02);
    filter: blur(12px);
    transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 2.5s cubic-bezier(0.16, 1, 0.3, 1),
        filter 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-premium-reveal.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ==========================================================================
           HEADER
           ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--clr-base);
    z-index: 1000;
    border-bottom: 1px solid #ebe6dd;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.header.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.header__container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--ff-en-fancy);
    font-size: 1.8rem;
    color: var(--clr-accent);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.header__nav ul {
    display: flex;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
}

.header__nav ul li a {
    color: var(--clr-accent);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.header__nav a:hover {
    color: var(--clr-sub);
}

.header__btn--hp a,
.header__btn--line a,
.header__btn--tel a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: transparent;
    color: var(--clr-accent) !important;
    border: 1px solid var(--clr-accent);
    border-radius: 4px;
    font-size: 0.8rem !important;
    transition: 0.3s;
}

.header__btn--hp a:hover,
.header__btn--line a:hover,
.header__btn--tel a:hover {
    background-color: var(--clr-accent);
    color: #fff !important;
}

/* SP Header */
.header__hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-accent);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
    background-color: #fff;
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
    background-color: #fff;
}

.header__sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-accent);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    padding: 80px 0;
}

.header__sp-nav.is-active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.header__sp-nav ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.header__sp-nav li {
    margin-bottom: 0.8rem;
}

.header__sp-nav .header__sp-contact {
    margin-top: 2rem;
}

.header__sp-nav a {
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: capitalize;
}

.header__sp-cta-list {
    width: min(88%, 420px);
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.header__sp-nav .header__sp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.7rem;
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--clr-accent);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

@media (min-width: 769px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .header__logo {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
           FIRST VIEW (FV)
           ========================================================================== */
.fv-v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: var(--clr-base);
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    padding-top: 0;
    box-sizing: border-box;
}

.fv-v2__image {
    flex: 0 0 50%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

.fv-v2__slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fv-v2__slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.fv-v2__slideshow img.active {
    opacity: 1;
}

.fv-v2__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--header-height) 80px 0 120px;
    text-align: left;
    background-color: #163b64;
    /* 背景を青に変更 */
}

.fv-v2__brand {
    font-family: var(--ff-jp-serif);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    /* 「毎日食堂」のサイズを微調整 */
    letter-spacing: 0.05em;
    color: #ffffff;
    /* 文字を白に変更 */
    line-height: 1.3;
    margin-bottom: 24px;
}

.fv-v2__brand span {
    font-size: clamp(3.8rem, 6.5vw, 7.8rem);
    /* Bucchiの文字を大きく表示 */
    display: block;
    margin-top: 0.6rem;
    font-family: var(--ff-en-fancy);
    /* 英語用フォントを適用 */
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.fv-v2__catch {
    font-family: var(--ff-jp-serif);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    color: #ffffff;
    /* 文字を白に変更 */
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.fv-v2__sub {
    font-family: var(--ff-jp-sans);
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
    color: #ffffff !important;
    /* 文字を白に変更 */
    letter-spacing: 0.1em;
}

.fv-v2__scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.fv-v2__scroll-text {
    font-size: 0.75rem !important;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    /* 青背景に合わせて白に変更 */
    writing-mode: vertical-rl;
    font-family: var(--ff-en-fancy);
}

.fv-v2__scroll::after {
    content: '';
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.4);
    /* 青背景に合わせて白に変更 */
}

@media (max-width: 1024px) {
    .fv-v2__content {
        padding: 0 40px 0 60px;
    }
}

@media (max-width: 768px) {
    .fv-v2 {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        flex-direction: column;
        padding-bottom: 0px;
    }

    /* 余分な余白を消去 */
    .fv-v2__image {
        flex: none;
        width: 100%;
        height: 50vh;
    }

    .fv-v2__content {
        flex: none;
        align-items: center;
        text-align: center;
        padding: 60px 20px 80px;
    }

    /* パディングを調整 */
    .fv-v2__brand {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .fv-v2__brand span {
        font-size: 5.2rem;
    }

    .fv-v2__catch {
        font-size: 1.8rem !important;
        margin-bottom: 8px;
    }

    .fv-v2__scroll {
        display: none;
    }
}

/* ==========================================================================
           ABOUT
           ========================================================================== */
.about {
    padding: 160px 0;
    background-color: #163b64;
    color: #fff;
}

.about .text-\[var\(--clr-text\)\],
.about .text-gray-700,
.about p {
    color: #fff !important;
}

.about-concept {
    background-color: #163b64;
    padding: 0 0 3rem;
}

/* ==========================================================================
           NEW CTA (Reservation)
           ========================================================================== */
.cta-new-wrapper {
    background-color: #f3f4f6;
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.cta-new-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-new-title {
    font-family: var(--ff-jp-serif);
    font-size: 1.2rem;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.cta-new-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-text);
    font-family: var(--ff-en-fancy);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.cta-new-tel:hover {
    color: var(--clr-sub);
}

.cta-new-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: var(--ff-jp-sans);
}

.cta-new-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cta-new-btn {
    background-color: #2b3a4a;
    /* User screenshot specifically showed Navy Blue buttons here */
    color: #ffffff !important;
    padding: 1.2rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
}

.cta-new-btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 37, 47, 0.3);
}

.cta-new-btn svg {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 1.5rem;
}

@media (max-width: 768px) {
    .cta-new-wrapper {
        padding: 60px 0;
    }

    .cta-new-btns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-new-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-new-btn svg {
        right: 1rem;
    }
}

/* ==========================================================================
           SECTION: REASONS (Service)
           ========================================================================== */
.reasons {
    padding: 120px 0 100px;
    background: #fff8d8;
}

.service-item .reve-font-roboto {
    font-size: 28px !important;
}

.service-divider {
    width: 94%;
    height: 1px;
    margin: 0 auto;
    background-color: var(--clr-text);
    transform: rotate(-7deg);
    transform-origin: center;
}

.service-divider--reverse {
    transform: rotate(7deg);
}

/* Number Decoration */
.number-deco {
    font-family: var(--ff-en-fancy);
    font-size: 4rem;
    color: var(--clr-sub);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1;
}

/* ==========================================================================
           SECTION: MENU (Light Theme - Step 8 version)
           ========================================================================== */
.menu {
    padding: 100px 0 80px;
    background-image: url("img/menubg.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-text);
    position: relative;
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .menu {
        background: none;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
    .menu::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-image: url("img/menubg.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    .menu > * {
        position: relative;
        z-index: 1;
    }
}

.menu>.container-custom {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: calc(100% - 30px);
    /* 左右に15pxずつの隙間を空けて固定背景を見せる */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .menu>.container-custom {
        width: calc(100% - 80px);
        /* タブレットのときは左右に40pxずつの隙間を空けて固定背景を見せる */
        max-width: 1320px;
        padding-left: 7rem;
        padding-right: 7rem;
    }
}

.menu__container {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 var(--side-padding);
}

.menu__recommend-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.menu__recommend-content {
    flex: 1;
}

.menu__reservation {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #163b64;
    margin-bottom: 1.5rem;
}

.menu__reservation-title {
    font-family: var(--ff-jp-sans);
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--clr-accent);
    border-bottom: 1px dashed #163b64;
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 5rem;
}

.menu__grid-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.8rem;
    font-size: 1rem;
    border-bottom: 1px dotted var(--clr-accent);
}

.menu__group-title {
    color: var(--clr-accent);
    border-bottom: 1px solid var(--clr-accent);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.menu__note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.8;
}

.menu__more-btn {
    display: inline-block;
    border: 1px solid var(--clr-accent);
    background-color: var(--clr-accent);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu__more-btn:hover {
    background-color: var(--clr-dark);
    border-color: var(--clr-dark);
}

.menu__more-wrap {
    margin-top: 2rem;
    text-align: center;
}

.menu__group+.menu__group {
    margin-top: 7rem;
}

@media (max-width: 768px) {
    .menu__recommend-section {
        flex-direction: column;
        gap: 20px;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu__item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .service-divider {
        width: 90%;
    }
}

/* ==========================================================================
           SECTION: VOICE
           ========================================================================== */
.voice {
    padding: var(--section-gap) var(--side-padding);
    background-image: url("img/voicebg.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .voice {
        background: none;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
    .voice::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-image: url("img/voicebg.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        pointer-events: none;
    }
    .voice > * {
        position: relative;
        z-index: 1;
    }
}

.voice>.container-custom>.text-center h2 {
    color: var(--clr-accent) !important;
}

.voice>.container-custom>.text-center p {
    color: var(--clr-text) !important;
}

.voice__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.voice__text.is-expanded {
    display: block;
    overflow: visible;
}

.voice__more {
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.voice__badge {
    background-color: var(--clr-accent);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* ==========================================================================
           SECTION: GALLERY
           ========================================================================== */
.gallery {
    padding: var(--section-gap) 0;
    background-color: var(--clr-base);
}

.gallery__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: zoom-in;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 37, 47, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.is-active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
           SECTION: ACCESS / CONTACT
           ========================================================================== */
.contact {
    padding: var(--section-gap) 0;
    background-color: #163b64;
    color: #fff;
}

.contact__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.contact__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: stretch;
}

.contact__info {
    flex: 1;
}

.contact h2,
.contact .reve-font-serif,
.contact__list li,
.contact__value,
.contact__value span {
    color: #fff !important;
}

.contact__list li {
    display: flex;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact__label {
    width: 7em;
    flex-shrink: 0;
    color: var(--clr-sub);
    font-weight: 700;
}

.contact__value {
    flex: 1;
}

.contact__map {
    width: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .contact__content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact__content {
        flex-direction: column;
        gap: 40px;
    }

    .contact__map {
        width: 100%;
        height: 70vw;
        min-height: 300px;
    }

    .contact__list li {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .contact__label {
        width: auto;
    }
}

/* ==========================================================================
           FOOTER & PAGETOP & SP CTA
           ========================================================================== */
.footer {
    background-color: var(--clr-dark);
    color: #fff;
    padding: 24px 1.5rem 16px;
    text-align: center;
}

.footer__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer__logo {
    font-family: var(--ff-jp-serif);
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    color: #fff;
    font-weight: 700;
}

.footer p {
    margin-bottom: 0.5rem !important;
}

.footer__copyright {
    font-size: 0.75rem;
}

.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-sub);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

.pagetop:hover {
    transform: translateY(-5px);
    background-color: var(--clr-accent);
}

.pagetop__arrow {
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}

.sp-cta {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.sp-cta.is-hidden {
    transform: translateY(100%);
}

.sp-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: 0.3s;
    color: #fff !important;
}

.sp-cta__btn--hp {
    background-color: var(--clr-sub);
}

.sp-cta__btn--line {
    background-color: var(--clr-accent);
}

@media (max-width: 768px) {
    :root {
        --reve-section-title-size: 52px;
    }

    .sp-cta {
        display: flex !important;
    }

    .footer {
        padding-bottom: 75px !important;
    }

    .pagetop {
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
    }

    body.no-scroll .sp-cta,
    body.is-menu-open .pagetop {
        display: none !important;
    }
}

/* Typography overrides */
p,
.about__text,
.reasons__text,
.menu__item-desc {
    font-size: 15px !important;
    line-height: 2 !important;
}

h3,
h4,
.about__title,
.reasons__title,
.menu__item-title {
    font-size: 24px !important;
}

h2.reve-font-roboto {
    font-size: var(--reve-section-title-size) !important;
}