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

html {
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes paperDrift {
    0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    33% { background-position: 10% 5%, -5% 8%, 3% -3%; }
    66% { background-position: -5% 10%, 8% -3%, -6% 6%; }
}

@keyframes paperShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

body {
    background-color: #E8E4DC;
    font-family: 'EB Garamond', Georgia, serif;
    color: #2B2B2B;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

 

 
 
.menu-page {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #F5F2EC;
    min-height: 100vh;
    padding: 36px 48px 28px;
}

/* ===== Header ===== */
.menu-header {
    margin-bottom: 32px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.logo-area {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mimi {
    display: none;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.logo-sub {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: #B8A67F;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: 1;
}

.header-tagline {
    text-align: right;
    padding-top: 18px;
}

/* ===== Font Size Toggle ===== */
.font-size-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.fs-label {
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #B8A67F;
    text-transform: uppercase;
    margin-right: 4px;
}

.fs-btn {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    color: #B8A67F;
    background: transparent;
    border: 1px solid #DAD0BB;
    border-radius: 3px;
    padding: 5px 10px;
    min-width: 34px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    -webkit-tap-highlight-color: transparent;
}

.fs-btn:hover {
    border-color: #B8A67F;
    color: #8C7C56;
}

.fs-btn.is-active {
    background-color: #B8A67F;
    border-color: #B8A67F;
    color: #F5F2EC;
}

.fs-btn[data-fs="2"] {
    font-size: 16px;
}

.fs-btn[data-fs="4"] {
    font-size: 18px;
}

.tagline-upper {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: #B8A67F;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.tagline-lower {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: #B8A67F;
    font-weight: 400;
}

/* ===== Menu Body: Two Columns ===== */
.menu-body {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
}

.menu-column {
    flex: 1;
    min-width: 0;
}

/* ===== Section Heading ===== */
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8A67F;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background-color: #DAD0BB;
    opacity: 0.45;
}

/* ===== Subsection ===== */
.subsection {
    margin-top: 22px;
    margin-bottom: 12px;
}

.subsection-title {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #B8A67F;
    text-transform: uppercase;
}

/* ===== Section Divider ===== */
.section-divider {
    height: 1px;
    background-color: #DAD0BB;
    margin: 20px 0;
    opacity: 0.45;
}

/* ===== Menu Item ===== */
.menu-item {
    margin-bottom: 16px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 2px;
}

.item-name {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #2B2B2B;
    text-transform: uppercase;
}

.item-price-line {
    display: flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-dots {
    flex: 1;
    min-width: 16px;
    border-bottom: 1px dotted #DAD0BB;
    margin: 0 5px;
    opacity: 0.5;
}

.price-value {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: #2B2B2B;
    white-space: nowrap;
}

.price-label {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #2B2B2B;
    text-transform: uppercase;
}

.item-desc-detail {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: #4A4A4A;
    line-height: 1.55;
}

.item-desc-detail em {
    font-style: italic;
}

/* ===== Signature Item (One Bite Buns) ===== */
.signature-item {
    margin-bottom: 16px;
}

.sig-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2px;
}

.sig-left {
    flex-shrink: 0;
}

.sig-name-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.star-icon {
    color: #B8A67F;
    font-size: 15px;
}

.sig-label {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #B8A67F;
    text-transform: uppercase;
    margin-top: 2px;
}

.sig-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.sig-price-row {
    display: flex;
    align-items: baseline;
    gap: 0;
    width: 100%;
}

.sig-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: #4A4A4A;
    text-align: right;
    margin-bottom: 2px;
}

/* ===== Rice & Desserts Box ===== */
.rice-desserts-box {
    display: flex;
    border: 1px solid #DAD0BB;
    border-radius: 2px;
    margin-bottom: 26px;
    overflow: hidden;
}

.rd-column {
    flex: 1;
    display: flex;
    gap: 14px;
    padding: 20px 22px;
    align-items: flex-start;
}

.rd-divider-v {
    width: 1px;
    background-color: #DAD0BB;
    opacity: 0.45;
}

.rd-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rd-icon svg {
    width: 42px;
    height: 42px;
}

.rd-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='r'><feColorMatrix type='matrix' values='0 0 0 0 0.545 0 0 0 0 0.482 0 0 0 0 0.357 0 0 0 1 0'/></filter></svg>#r");
}

.rd-content {
    flex: 1;
    min-width: 0;
}

.rd-title {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #B8A67F;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rd-item {
    margin-bottom: 12px;
}

.rd-item:last-child {
    margin-bottom: 0;
}

.rd-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 2px;
}

.rd-item-name {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #2B2B2B;
    text-transform: uppercase;
    line-height: 1.4;
}

.rd-item-price {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    color: #2B2B2B;
    white-space: nowrap;
    flex-shrink: 0;
}

.rd-item-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: #4A4A4A;
    line-height: 1.5;
}

.rd-item-desc em {
    font-style: italic;
}

/* ===== Bottom Section (Drinks + Footer combined) ===== */
.bottom-section {
    margin-top: 10px;
}

.drinks-title-row {
    margin-bottom: 10px;
}

.drinks-title-row .drinks-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drinks-title-row .drinks-line {
    flex: 1;
    height: 1px;
    background-color: #DAD0BB;
    opacity: 0.45;
}

.drinks-title-row .drinks-title {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #B8A67F;
    text-transform: uppercase;
    white-space: nowrap;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.bottom-left {
    flex: 1;
    min-width: 0;
}

.drinks-icon-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.drinks-icon-text .drinks-icon {
    flex-shrink: 0;
    width: 34px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drinks-icon-text .drinks-icon svg {
    width: 30px;
    height: 38px;
}

.drinks-icon-text .drinks-text {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #2B2B2B;
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0;
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-left: 1px solid #DAD0BB;
    padding-left: 12px;
    opacity: 0.7;
}

.footer-brand-name {
    font-family: 'EB Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #B8A67F;
    text-transform: uppercase;
    line-height: 1.3;
}

.footer-brand-sub {
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #B8A67F;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .menu-page {
        padding: 30px 32px 24px;
    }

    .logo-img {
        height: 56px;
    }

    .footer-logo-img {
        height: 38px;
    }
}

@media (max-width: 768px) {
    body::before,
    body::after {
        width: 60px;
    }

    .menu-page {
        padding: 22px 18px 18px;
    }

    .logo-img {
        height: 48px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .menu-body {
        flex-direction: column;
        gap: 18px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .rice-desserts-box {
        flex-direction: column;
    }

    .rd-divider-v {
        width: 100%;
        height: 1px;
    }

    .rd-column {
        padding: 16px 14px;
    }

    .bottom-row {
        flex-direction: column;
        gap: 16px;
    }

    .bottom-right {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .menu-page {
        padding: 16px 12px 14px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .logo-area {
        gap: 6px;
    }

    .header-tagline {
        text-align: left;
        padding-top: 4px;
    }

    .header-right {
        align-items: flex-start;
    }

    .font-size-toggle {
        align-self: flex-start;
        padding-top: 0;
    }

    .header-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .section-title {
        font-size: 13px;
    }

    .item-name {
        font-size: 12px;
        letter-spacing: 0.04em;
    }

    .price-value {
        font-size: 12px;
    }

    .item-desc-detail {
        font-size: 11px;
    }

    .sig-top {
        flex-direction: column;
        gap: 6px;
    }

    .sig-right {
        align-items: flex-start;
    }

    .sig-desc {
        text-align: left;
    }

    .rd-icon {
        width: 38px;
        height: 38px;
    }

    .rd-icon svg {
        width: 34px;
        height: 34px;
    }

    .rd-item-name {
        font-size: 11px;
    }

    .rd-item-price {
        font-size: 11px;
    }

    .rd-item-desc {
        font-size: 10px;
    }

    .footer-logo-img {
        height: 28px;
    }

    .footer-brand-text {
        padding-left: 8px;
    }
}
