/* =========================================================
   nycdbc.com — 纽约东北菜餐馆 · 辽宁山庄
   纯静态中文站。配色：灯笼红 + 农家木色 + 米白纸色
   ========================================================= */

:root {
    --primary-color: #9e1b1b;
    --primary-dark: #751212;
    --accent-color: #d9a441;
    --gold-soft: #f3dfb2;
    --dark-color: #2b1d15;
    --wood: #5c3b24;
    --ink: #2b211b;
    --text: #463a31;
    --muted: #7a6a5c;
    --cream: #fbf7ef;
    --paper: #f4ecdd;
    --line: #e6dac5;
    --green: #2f5b3b;
    --white: #ffffff;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(60, 35, 15, .10);
    --shadow-lg: 0 18px 50px rgba(60, 35, 15, .18);
    --transition: all .3s ease;
    --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
    --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
            "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 .6em;
    font-weight: 700;
    letter-spacing: .02em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 860px; }

.visually-hidden {
    position: absolute; left: -9999px; top: 0;
    background: var(--primary-color); color: #fff; padding: 8px 14px; z-index: 999;
}
.visually-hidden:focus { left: 10px; top: 10px; }

/* ---------- 顶部信息条 ---------- */
.topbar {
    background: var(--dark-color);
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: #fff; }
.topbar-hours { opacity: .85; }

/* ---------- 页头 ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 247, 239, .97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 16px rgba(60, 35, 15, .06);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; min-height: 76px;
}
.logo a { display: flex; align-items: center; color: var(--primary-color); text-decoration: none; transition: opacity .3s; }
.logo a:hover { opacity: .8; }
.logo img { width: 150px; height: auto; }

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav li { position: relative; }
.main-nav a {
    display: block; padding: 10px 11px; color: var(--ink);
    font-size: .98rem; font-weight: 600; white-space: nowrap; border-radius: 6px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--primary-color); }
.main-nav a[aria-current="page"] { background: rgba(158, 27, 27, .07); }
.has-sub > a::after { content: "▾"; font-size: .7em; margin-left: 4px; opacity: .6; }
.sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 210px;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    box-shadow: var(--shadow); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: var(--transition);
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a { font-weight: 500; font-size: .94rem; }
.sub-menu a:hover { background: var(--paper); }

.header-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-color); color: #fff !important;
    padding: 10px 18px; border-radius: 999px; font-weight: 700; white-space: nowrap;
}
.header-cta:hover { background: var(--primary-dark); }

.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; padding: 10px; border-radius: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: var(--transition); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
    .nav-toggle { display: block; }
    .header-cta.desktop { display: none; }
    .main-nav {
        position: fixed; left: 0; right: 0; top: 76px;
        height: calc(100dvh - 76px);
        background: var(--cream); overflow-y: auto;
        padding: 12px 20px 40px; border-top: 1px solid var(--line);
        transform: translateX(100%); transition: transform .3s ease;
    }
    .nav-open .main-nav { transform: none; }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a { padding: 13px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .has-sub > a::after { display: none; }
    .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; padding: 0 0 0 16px; background: transparent;
    }
    .sub-menu a { font-size: .98rem; color: var(--muted); }
    .main-nav .header-cta { margin-top: 18px; justify-content: center; border-bottom: 0; }
}
@media (min-width: 1101px) { .main-nav .header-cta { display: none; } }

/* ---------- 通用按钮 ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--accent-color); color: var(--dark-color); }
.btn-gold:hover { background: #e8b95c; color: var(--dark-color); transform: translateY(-2px); }
.btn-outline { border-color: currentColor; color: var(--primary-color); background: transparent; }
.btn-outline:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.btn-light { border-color: rgba(255, 255, 255, .8); color: #fff; }
.btn-light:hover { background: #fff; color: var(--primary-color); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 首页大图 ---------- */
.hero {
    position: relative; color: #fff; overflow: hidden;
    min-height: min(88vh, 760px); display: flex; align-items: center;
    background: var(--dark-color);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(30, 14, 8, .82) 0%, rgba(30, 14, 8, .55) 50%, rgba(30, 14, 8, .15) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.hero-eyebrow {
    display: inline-block; font-family: var(--serif); letter-spacing: .3em;
    color: var(--gold-soft); border: 1px solid rgba(243, 223, 178, .5);
    padding: 4px 16px; border-radius: 999px; font-size: .92rem; margin-bottom: 18px;
}
.hero h1 { color: #fff; max-width: 700px; margin-bottom: .35em; text-shadow: 0 2px 20px rgba(0, 0, 0, .35); }
.hero-dishes {
    font-family: var(--serif); font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--gold-soft); margin-bottom: 1em; letter-spacing: .08em;
}
.hero-lead { max-width: 580px; font-size: 1.06rem; color: rgba(255, 255, 255, .9); margin-bottom: 1.8em; }

/* 内页大标题 */
.page-hero {
    position: relative; color: #fff; padding: 110px 0 90px; overflow: hidden;
    background: var(--dark-color); text-align: center;
}
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(30, 14, 8, .6); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: rgba(255, 255, 255, .9); max-width: 720px; margin: 0 auto; font-size: 1.08rem; }
.page-hero .hero-eyebrow { margin-bottom: 14px; }

.breadcrumb { font-size: .88rem; color: var(--muted); padding: 14px 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: #b9a78f; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary-color); }

/* ---------- 区块 ---------- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--dark-color); color: rgba(255, 255, 255, .85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-red { background: var(--primary-color); color: #fff; }
.section-red h2 { color: #fff; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-head .eyebrow {
    display: block; font-family: var(--serif); color: var(--accent-color);
    letter-spacing: .25em; font-size: .95rem; margin-bottom: 6px; text-transform: uppercase;
}
.section-head h2 { margin-bottom: .35em; }
.section-head p { color: var(--muted); margin: 0; }
.section-dark .section-head p { color: rgba(255, 255, 255, .7); }
.divider {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin: 12px auto 18px; color: var(--accent-color);
}
.divider::before, .divider::after { content: ""; width: 54px; height: 1px; background: currentColor; opacity: .6; }
.divider span { width: 9px; height: 9px; transform: rotate(45deg); background: currentColor; }
.text-left { text-align: left; margin-left: 0; }
.text-left .divider { justify-content: flex-start; }

/* 图文分栏 */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-media.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-media.pair img:last-child { margin-top: 50px; }
.split-body h2 { margin-bottom: .2em; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.check-list li::before {
    content: ""; position: absolute; left: 4px; top: .7em; width: 10px; height: 10px;
    background: var(--primary-color); transform: rotate(45deg);
}

/* 卡片 */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column;
    color: var(--text);
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: var(--text); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
a.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .35em; }
.card-body p { color: var(--muted); font-size: .96rem; margin-bottom: .8em; }
.card-meta { font-size: .88rem; color: var(--accent-color); font-weight: 700; letter-spacing: .05em; margin-bottom: 6px; }
.card-link { margin-top: auto; font-weight: 700; color: var(--primary-color); }

/* 特色项目小图标块 */
.feature {
    background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}
.feature-icon {
    width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(158, 27, 27, .08); font-size: 1.6rem; margin-bottom: 14px;
}
.feature h3, .section-dark .feature h3 { margin-bottom: .3em; color: var(--ink); }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- 菜单 ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.menu-tabs a {
    padding: 9px 22px; border-radius: 999px; border: 1px solid var(--line);
    background: #fff; color: var(--ink); font-weight: 600;
}
.menu-tabs a:hover { border-color: var(--primary-color); color: var(--primary-color); }
.menu-block { margin-bottom: 64px; scroll-margin-top: 110px; }
.menu-block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; border-bottom: 2px solid var(--ink); padding-bottom: 10px; }
.menu-block-head h2 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.menu-block-head p { margin: 0; color: var(--muted); font-size: .92rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 48px; }
.menu-item { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.menu-item-top { display: flex; align-items: baseline; gap: 10px; }
.menu-item h3 { margin: 0; font-size: 1.14rem; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted #cdbb9f; transform: translateY(-5px); min-width: 20px; }
.menu-item .price { font-family: var(--serif); font-weight: 700; color: var(--primary-color); font-size: 1.14rem; white-space: nowrap; }
.menu-item .en { color: var(--muted); font-size: .9rem; font-style: italic; margin: 2px 0 0; }
.menu-item .tag {
    display: inline-block; font-size: .72rem; background: var(--primary-color); color: #fff;
    border-radius: 4px; padding: 1px 7px; margin-left: 6px; vertical-align: 3px; font-family: var(--sans);
}
.menu-note {
    background: #fff; border-left: 4px solid var(--accent-color); border-radius: var(--radius-sm);
    padding: 16px 20px; color: var(--muted); font-size: .95rem; box-shadow: var(--shadow);
}
.dish-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.dish-gallery figure { margin: 0; }
.dish-gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; width: 100%; }
.dish-gallery figcaption { text-align: center; font-family: var(--serif); font-weight: 700; margin-top: 8px; color: var(--ink); }

/* 全羊宴 */
.feast-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.feast-grid figure { margin: 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.feast-grid img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.feast-grid figcaption { padding: 10px 8px 12px; text-align: center; font-family: var(--serif); font-weight: 700; color: var(--ink); }
.feast-grid .text-only { display: grid; place-items: center; background: var(--primary-color); }
.feast-grid .text-only figcaption { color: #fff; font-size: 1.15rem; padding: 20px; }

/* ---------- 图集 ---------- */
.gallery { columns: 4 240px; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; break-inside: avoid; border-radius: 10px; overflow: hidden; cursor: zoom-in; }
.gallery img { width: 100%; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.04); }
.photo-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 30px; }
.photo-row a { border-radius: 10px; overflow: hidden; cursor: zoom-in; display: block; }
.photo-row img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: transform .5s ease; }
.photo-row a:hover img { transform: scale(1.05); }

.lightbox {
    position: fixed; inset: 0; z-index: 1000; background: rgba(15, 8, 4, .93);
    display: none; align-items: center; justify-content: center; padding: 50px 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 10px 50px rgba(0, 0, 0, .5); }
.lightbox button {
    position: absolute; background: rgba(255, 255, 255, .12); color: #fff; border: 0;
    width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- 景点 ---------- */
.attraction { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.attraction:last-child { border-bottom: 0; }
.attraction.reverse > :first-child { order: 2; }
.attraction-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.attraction-photos a:first-child { grid-column: span 2; }
.attraction-photos a { border-radius: 10px; overflow: hidden; display: block; cursor: zoom-in; }
.attraction-photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.attraction-photos a:first-child img { aspect-ratio: 16 / 9; }
.distance {
    display: inline-flex; align-items: center; gap: 6px; background: var(--primary-color); color: #fff;
    padding: 4px 14px; border-radius: 999px; font-size: .88rem; font-weight: 700; margin-bottom: 12px;
}
.addr-line { font-size: .94rem; color: var(--muted); background: var(--paper); border-radius: 8px; padding: 10px 14px; }

/* ---------- 商品 ---------- */
.product { text-align: center; }
.product .card-img { aspect-ratio: 1; }
.product .card-body { align-items: center; padding: 18px 16px 22px; }
.product h3 { font-size: 1.15rem; margin-bottom: .2em; }
.product .price { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--primary-color); }
.product .unit { font-size: .82rem; color: var(--muted); }

/* ---------- 门店 / 联系 ---------- */
.branch { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; }
.branch.main { border: 2px solid var(--primary-color); }
.branch .badge {
    position: absolute; top: -13px; left: 24px; background: var(--primary-color); color: #fff;
    font-size: .8rem; padding: 3px 12px; border-radius: 999px; font-weight: 700;
}
.branch h3 { margin-bottom: .1em; }
.branch .sub { color: var(--accent-color); font-weight: 700; font-size: .9rem; margin-bottom: 14px; letter-spacing: .05em; }
.branch p { margin-bottom: .5em; }
.branch .tel { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }

.hours-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours-table th, .hours-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.hours-table th { background: var(--primary-color); color: #fff; font-family: var(--serif); font-weight: 700; }
.hours-table tr:last-child td { border-bottom: 0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

.call-band { text-align: center; padding: 70px 0; }
.call-band h2 { margin-bottom: .3em; }
.call-band .big-tel {
    display: inline-block; font-family: var(--serif); font-size: clamp(1.9rem, 5vw, 2.9rem);
    color: var(--gold-soft); font-weight: 700; margin: 10px 0 22px; letter-spacing: .04em;
}
.call-band .big-tel:hover { color: #fff; }
.call-band p { color: rgba(255, 255, 255, .85); }

/* ---------- 评价 ---------- */
.quote {
    background: #fff; border-radius: var(--radius); padding: 32px 30px 26px; box-shadow: var(--shadow);
    position: relative; margin: 0;
}
.quote::before {
    content: "“"; position: absolute; top: -8px; left: 20px; font-family: var(--serif);
    font-size: 5rem; color: var(--accent-color); opacity: .45; line-height: 1;
}
.quote p { position: relative; margin-bottom: .8em; }
.quote footer, .quote cite { font-style: normal; color: var(--muted); font-size: .9rem; font-weight: 700; }

/* ---------- 文章 ---------- */
.article { background: #fff; border-radius: var(--radius); padding: 50px clamp(20px, 5vw, 64px); box-shadow: var(--shadow); }
.article h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin-top: 1.6em; padding-left: 14px; border-left: 4px solid var(--primary-color); }
.article h3 { margin-top: 1.4em; color: var(--primary-dark); }
.article figure { margin: 1.8em 0; }
.article figure img { border-radius: 10px; width: 100%; }
.article figcaption { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 8px; }
.article .lead { font-size: 1.12rem; color: var(--ink); }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.4em; }
.dish-list { counter-reset: dish; list-style: none; padding: 0; }
.dish-list li { counter-increment: dish; position: relative; padding: 18px 0 18px 64px; border-bottom: 1px dashed var(--line); }
.dish-list li::before {
    content: counter(dish); position: absolute; left: 0; top: 16px; width: 44px; height: 44px;
    display: grid; place-items: center; border-radius: 50%; background: var(--primary-color);
    color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
}
.dish-list h3 { margin: 0 0 .2em; color: var(--ink); }
.dish-list p { margin: 0; }
.article-cta { background: var(--paper); border-radius: var(--radius); padding: 28px 30px; margin-top: 2.4em; }
.article-cta h2 { border: 0; padding: 0; margin-top: 0; }
.related { margin-top: 60px; }

/* ---------- 常见问题 ---------- */
.faq details { background: #fff; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 12px; }
.faq summary {
    cursor: pointer; padding: 18px 50px 18px 22px; font-weight: 700; color: var(--ink);
    list-style: none; position: relative; font-family: var(--serif); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 14px; font-size: 1.5rem; color: var(--primary-color); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 18px; margin: 0; color: var(--muted); }

/* ---------- 页脚（标准模板） ---------- */
footer.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3.5rem 0 1rem;
    margin-top: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo { width: 150px; margin-bottom: 14px; }
.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}
.footer-section p { font-size: .95rem; margin-bottom: .7em; }
.footer-section a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: .9rem;
}
.footer-partner {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-partner a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}
.footer-partner a:hover {
    color: var(--white);
}

/* 手机底部拨号条 */
.mobile-call {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--primary-color); color: #fff; text-align: center;
    padding: 13px 10px calc(13px + env(safe-area-inset-bottom)); font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}
.mobile-call:hover { color: #fff; }

/* ---------- 响应式 ---------- */
@media (max-width: 1000px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .feast-grid { grid-template-columns: repeat(3, 1fr); }
    .dish-gallery { grid-template-columns: repeat(2, 1fr); }
    .split, .attraction { grid-template-columns: 1fr; gap: 34px; }
    .split.reverse > :first-child, .attraction.reverse > :first-child { order: 0; }
}
@media (max-width: 760px) {
    body { font-size: 16px; padding-bottom: 52px; }
    .section { padding: 64px 0; }
    .section-sm { padding: 44px 0; }
    .section-head { margin-bottom: 36px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .menu-list { grid-template-columns: 1fr; }
    .feast-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar-hours { display: none; }
    .topbar .container { justify-content: center; }
    .logo img { width: 128px; }
    .header-inner { min-height: 66px; }
    .main-nav { top: 66px; height: calc(100dvh - 66px); }
    .page-hero { padding: 80px 0 64px; }
    .split-media.pair img:last-child { margin-top: 30px; }
    .gallery { columns: 2 140px; column-gap: 10px; }
    .gallery a { margin-bottom: 10px; }
    .article { padding: 32px 18px; }
    .dish-list li { padding-left: 56px; }
    .mobile-call { display: block; }
    .menu-block-head { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 420px) {
    .grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
    .product .card-body { padding: 14px 10px 16px; }
    .btn { padding: 12px 22px; }
}
