:root {
    color-scheme: light;
    --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --bg: #f5f2eb;
    --surface: #fffaf1;
    --surface-strong: #ffffff;
    --ink: #1a1730;
    --muted: #6f687a;
    --gold: #9a6a12;
    --gold-dark: #6f4a06;
    --line: #ded6c8;
    --wine: #7c2638;
    --green: #24745b;
    --shadow: 0 18px 45px rgba(26, 23, 48, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    font-weight: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-main {
    min-height: 100vh;
    padding-bottom: 48px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fffaf1;
    color: var(--ink);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 24px;
}

.footer-brand p {
    max-width: 360px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
    align-content: start;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 14px 0 18px;
    color: var(--muted);
    font-size: 12px;
}

.global-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(222, 214, 200, 0.8);
    background: rgba(245, 242, 235, 0.94);
    padding: 12px 20px;
    backdrop-filter: blur(16px);
}

.global-header {
    position: sticky;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 142px;
}

.brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    background: var(--ink);
}

.brand-mark::before {
    position: absolute;
    inset: 8px 14px 14px;
    border-radius: 999px;
    background: #c9aa6e;
    content: "";
}

.brand-mark::after {
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 8px;
    height: 8px;
    border: 2px solid #c9aa6e;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    content: "";
}

.brand-ja {
    display: block;
    color: var(--gold-dark);
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.brand-en {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: 11px;
    line-height: 1;
}

.header-search {
    display: grid;
    grid-template-columns: minmax(160px, 360px) auto;
    gap: 8px;
    width: min(42vw, 460px);
    margin-left: auto;
}

.header-search input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 9px 10px;
    outline: none;
}

.header-search input:focus {
    border-color: #c9aa6e;
    box-shadow: 0 0 0 3px rgba(201, 170, 110, 0.24);
}

.header-search button {
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    color: #fffaf1;
    cursor: pointer;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 900;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.header-actions a {
    border-radius: 999px;
    padding: 8px 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.header-actions .owner-link {
    background: var(--ink);
    color: #fffaf1;
}

.menu-button {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 9px;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.menu-button[aria-expanded="true"] {
    border-color: #c9aa6e;
    background: #fffaf1;
}

.global-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: grid;
    min-width: 220px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.global-menu[hidden] {
    display: none;
}

.global-menu a {
    border-bottom: 1px solid var(--line);
    padding: 13px 15px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.global-menu a:last-child {
    border-bottom: 0;
}

.hero {
    display: grid;
    align-content: end;
    min-height: 560px;
    padding: 76px 20px 26px;
    color: #fffaf1;
    background:
        linear-gradient(180deg, rgba(19, 18, 32, 0.42), rgba(19, 18, 32, 0.88)),
        url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.hero-copy,
.search-box,
.quick-filters,
.friend-strip,
.checkin-banner,
.section-block {
    width: min(1120px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.area-label,
.section-kicker {
    margin: 0 0 8px;
    color: #d6b46e;
    font-size: 12px;
    font-weight: 800;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(40px, 8vw, 78px);
    line-height: 1.08;
}

.hero-lead {
    max-width: 560px;
    margin: 14px 0 24px;
    color: rgba(255, 250, 241, 0.86);
    font-size: 16px;
    line-height: 1.8;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 760px;
    margin-left: max(20px, calc((100% - 1120px) / 2));
}

.search-box input {
    min-width: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.96);
    color: var(--ink);
    padding: 16px;
    outline: none;
}

.search-box input:focus {
    box-shadow: 0 0 0 3px rgba(214, 180, 110, 0.55);
}

.search-detail-toggle,
.search-detail-fields {
    display: none;
}

.search-detail-fields[hidden] {
    display: none;
}

.search-detail-fields {
    grid-column: 1 / -1;
    gap: 8px;
    border: 1px solid rgba(255, 250, 241, 0.26);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.94);
    padding: 14px;
}

.search-detail-fields label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.search-detail-fields select {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf1;
    color: var(--ink);
    padding: 12px;
    outline: none;
}

.search-box button,
.checkin-banner a,
.spotlight-card > a {
    border: 0;
    border-radius: 8px;
    background: #c9aa6e;
    color: #181523;
    cursor: pointer;
    font-weight: 900;
}

.search-box button {
    padding: 0 22px;
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 14px;
    margin-left: max(20px, calc((100% - 1120px) / 2));
}

.quick-filters button {
    border: 1px solid rgba(255, 250, 241, 0.38);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.12);
    color: #fffaf1;
    cursor: pointer;
    padding: 9px 13px;
}

.quick-filters button.is-active {
    border-color: #c9aa6e;
    background: #c9aa6e;
    color: #181523;
}

.friend-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 14px 16px;
    box-shadow: var(--shadow);
}

.friend-strip a,
.section-heading a {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(36, 116, 91, 0.14);
}

.checkin-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    border-radius: 8px;
    background: var(--ink);
    color: #fffaf1;
    padding: 22px;
}

.checkin-banner h2,
.section-heading h2 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 24px;
    line-height: 1.35;
}

.checkin-banner a {
    flex: 0 0 auto;
    padding: 12px 18px;
}

.section-block {
    margin-top: 42px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.ranking-list,
.spotlight-list {
    display: grid;
    gap: 14px;
}

.ranking-card {
    position: relative;
    display: grid;
    grid-template-columns: 118px 44px 1fr auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    color: inherit;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ranking-card:hover,
.shop-card:hover,
.spotlight-card > a:hover,
.area-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(26, 23, 48, 0.14);
}

.ranking-card img {
    width: 118px;
    height: 126px;
    object-fit: cover;
}

.rank-number {
    color: var(--gold-dark);
    font-family: var(--font-ui);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.ranking-content {
    min-width: 0;
    padding: 16px 12px;
}

.shop-area {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.ranking-content h3,
.shop-card h3,
.spotlight-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.35;
}

.ranking-content p,
.shop-card p,
.spotlight-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-row span {
    border-radius: 999px;
    background: #efe6d4;
    color: #4d3a1c;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 700;
}

.welcome-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.welcome-row span {
    border-radius: 999px;
    background: rgba(124, 38, 56, 0.1);
    color: var(--wine);
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 900;
}

.checkin-count {
    padding: 0 18px;
    color: var(--wine);
    text-align: center;
}

.checkin-count strong {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.checkin-count span {
    font-size: 12px;
    font-weight: 700;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.shop-card,
.spotlight-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
}

.shop-card {
    color: inherit;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.shop-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.shop-card-body {
    padding: 14px;
}

.shop-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.open-badge,
.premium-badge {
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 900;
}

.open-badge {
    background: rgba(36, 116, 91, 0.12);
    color: var(--green);
}

.premium-badge {
    background: rgba(154, 106, 18, 0.14);
    color: var(--gold-dark);
}

.premium-section {
    border-top: 1px solid var(--line);
    padding-top: 34px;
}

.spotlight-card {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
}

.spotlight-card img {
    width: 190px;
    height: 124px;
    border-radius: 8px;
    object-fit: cover;
}

.spotlight-card > a {
    padding: 11px 14px;
    white-space: nowrap;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.area-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 18px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.area-link span {
    font-size: 18px;
    font-weight: 900;
}

.area-link strong {
    color: var(--gold-dark);
    font-size: 13px;
}

.search-hero {
    display: grid;
    align-items: end;
    min-height: 310px;
    padding: 76px 20px 32px;
    color: #fffaf1;
    background:
        linear-gradient(180deg, rgba(19, 18, 32, 0.35), rgba(19, 18, 32, 0.88)),
        url("https://images.unsplash.com/photo-1572116469696-31de0f17cc34?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.search-hero > div {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.search-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.14;
}

.search-hero p:last-child {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 250, 241, 0.86);
    line-height: 1.8;
}

.search-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    width: min(1120px, calc(100% - 40px));
    margin: 32px auto 0;
}

.mobile-filter-toggle {
    display: none;
}

.filter-panel {
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 18px;
    box-shadow: var(--shadow);
}

.filter-panel form {
    display: grid;
    gap: 10px;
}

.filter-panel label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input[type="search"],
.filter-panel select {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 11px 12px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.checkbox-row input {
    width: 17px;
    height: 17px;
    accent-color: var(--gold);
}

.filter-panel button {
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    color: #fffaf1;
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 900;
}

.reset-link {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.search-results {
    min-width: 0;
}

.result-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.result-toolbar h2 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 26px;
    line-height: 1.35;
}

.result-toolbar p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.result-list {
    display: grid;
    gap: 14px;
}

.result-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
}

.result-image img {
    width: 220px;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.result-body {
    min-width: 0;
    padding: 18px;
}

.result-topline,
.result-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.result-body h3 {
    margin: 10px 0 8px;
    font-size: 23px;
    line-height: 1.35;
}

.result-body h3 a {
    color: var(--ink);
}

.result-body p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.75;
}

.result-meta {
    margin-bottom: 12px;
}

.result-meta span {
    color: #4d3a1c;
    font-size: 13px;
    font-weight: 800;
}

.empty-state {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 28px;
}

.empty-state h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

.shop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    min-height: 560px;
    background: var(--ink);
    color: #fffaf1;
}

.shop-hero-image {
    min-height: 420px;
}

.shop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-copy {
    display: grid;
    align-content: end;
    gap: 12px;
    padding: 72px 40px 40px;
}

.shop-hero-copy h1 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.08;
}

.shop-kana {
    margin: -4px 0 0;
    color: rgba(255, 250, 241, 0.62);
}

.shop-catch {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 250, 241, 0.86);
    font-size: 17px;
    line-height: 1.8;
}

.shop-score-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-score-row span {
    border: 1px solid rgba(255, 250, 241, 0.22);
    border-radius: 999px;
    padding: 7px 10px;
    color: rgba(255, 250, 241, 0.9);
    font-size: 13px;
    font-weight: 800;
}

.shop-cta-bar {
    position: sticky;
    top: 59px;
    z-index: 15;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1120px, calc(100% - 40px));
    margin: -24px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.shop-cta-bar a {
    display: grid;
    min-height: 54px;
    place-items: center;
    background: var(--surface-strong);
    color: var(--ink);
    font-weight: 900;
    text-align: center;
}

.shop-cta-bar .checkin-action {
    background: #c9aa6e;
}

.shop-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    width: min(1120px, calc(100% - 40px));
    margin: 34px auto 0;
}

.shop-main-column,
.shop-side-column {
    display: grid;
    align-content: start;
    gap: 18px;
    min-width: 0;
}

.shop-section,
.info-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-strong);
    padding: 22px;
}

.gallery-carousel {
    position: relative;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    background: #0f0d18;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    scroll-snap-align: start;
}

.gallery-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: contain;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-controls span {
    min-width: 54px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 250, 241, 0.72);
    border-radius: 999px;
    background: rgba(26, 23, 48, 0.72);
    color: #fffaf1;
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-arrow::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
}

.gallery-arrow-prev {
    left: 12px;
}

.gallery-arrow-prev::before {
    transform: translateX(2px) rotate(-135deg);
}

.gallery-arrow-next {
    right: 12px;
}

.gallery-arrow-next::before {
    transform: translateX(-2px) rotate(45deg);
}

.shop-description,
.mama-card p,
.review-card p,
.seat-note {
    color: var(--muted);
    line-height: 1.85;
}

.mama-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.mama-card img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
}

.mama-card h2,
.info-panel h2 {
    margin: 0 0 8px;
    font-family: var(--font-ui);
    font-size: 24px;
}

.review-list,
.similar-slider {
    display: grid;
    gap: 12px;
}

.review-card {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.review-card strong {
    margin-right: 8px;
}

.review-card span {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
}

.similar-slider {
    display: grid;
    grid-auto-columns: minmax(220px, 32%);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
    scroll-snap-type: inline mandatory;
}

.similar-card {
    display: grid;
    gap: 6px;
    scroll-snap-align: start;
}

.similar-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.similar-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.similar-card strong {
    line-height: 1.35;
}

.info-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

.info-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    line-height: 1.6;
}

.seat-grid {
    display: grid;
    gap: 8px;
}

.seat-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
}

.seat-grid span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.seat-grid strong {
    text-align: right;
}

.seat-note {
    margin: 12px 0 0;
    font-size: 13px;
}

.map-sample {
    position: relative;
    display: grid;
    min-height: 210px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(222, 214, 200, 0.6) 1px, transparent 1px),
        linear-gradient(0deg, rgba(222, 214, 200, 0.6) 1px, transparent 1px),
        #f3eadb;
    background-size: 42px 42px;
    color: var(--muted);
    font-weight: 900;
}

.map-sample::before,
.map-sample::after {
    position: absolute;
    border-radius: 999px;
    background: rgba(122, 85, 8, 0.16);
    content: "";
}

.map-sample::before {
    width: 180px;
    height: 38px;
    transform: rotate(-22deg);
}

.map-sample::after {
    width: 150px;
    height: 32px;
    transform: rotate(28deg) translateY(58px);
}

.map-pin {
    position: absolute;
    top: 78px;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 5px solid #fffaf1;
    border-radius: 999px 999px 999px 0;
    background: var(--wine);
    transform: translateX(-50%) rotate(-45deg);
    box-shadow: 0 8px 18px rgba(26, 23, 48, 0.28);
}

.map-link {
    display: grid;
    min-height: 42px;
    margin-top: 10px;
    place-items: center;
    border-radius: 8px;
    background: var(--ink);
    color: #fffaf1;
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 860px) {
    .global-header {
        padding: 10px 14px;
    }

    .header-actions a:not(.owner-link) {
        display: none;
    }

    .header-search {
        display: none;
    }

    .header-actions .owner-link {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    .hero {
        min-height: 620px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .hero-copy,
    .search-box,
    .quick-filters,
    .friend-strip,
    .checkin-banner,
    .section-block {
        width: min(100%, calc(100% - 28px));
    }

    .search-box,
    .quick-filters {
        margin-left: auto;
    }

    .ranking-card,
    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .ranking-card img,
    .spotlight-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 0;
    }

    .rank-number {
        position: absolute;
        top: 12px;
        left: 12px;
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 999px;
        background: #fffaf1;
        font-size: 24px;
    }

    .checkin-count {
        position: absolute;
        top: 12px;
        right: 12px;
        border-radius: 999px;
        background: #fffaf1;
        padding: 8px 10px;
    }

    .shop-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .friend-strip,
    .checkin-banner,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .spotlight-card > a,
    .checkin-banner a {
        width: 100%;
        text-align: center;
    }

    .footer-inner,
    .footer-bottom {
        width: min(100%, calc(100% - 28px));
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
    }

    .search-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        width: min(100%, calc(100% - 28px));
        margin-top: 18px;
    }

    .search-hero > div {
        width: min(100%, calc(100% - 28px));
    }

    .search-hero {
        min-height: 230px;
        padding: 54px 14px 24px;
    }

    .search-hero h1 {
        font-size: 34px;
    }

    .search-hero p:last-child {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.65;
    }

    .mobile-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: start;
        min-height: 38px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface-strong);
        color: var(--ink);
        cursor: pointer;
        padding: 0 14px;
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 6px 16px rgba(26, 23, 48, 0.08);
    }

    .filter-panel {
        display: none;
        padding: 16px;
    }

    .filter-panel.is-open {
        display: block;
    }

    .result-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-image img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .shop-hero,
    .shop-page-layout {
        grid-template-columns: 1fr;
    }

    .shop-hero {
        min-height: 0;
    }

    .shop-hero-copy {
        padding: 26px 20px 34px;
    }

    .shop-hero-image {
        min-height: 0;
    }

    .shop-hero-image img {
        aspect-ratio: auto;
        height: clamp(220px, 64vw, 300px);
        object-fit: contain;
        background: #0f0d18;
    }

    .shop-cta-bar {
        position: static;
        top: auto;
        z-index: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, calc(100% - 28px));
        margin: 14px auto 0;
    }

    .shop-page-layout {
        width: min(100%, calc(100% - 28px));
        max-width: calc(100vw - 28px);
        overflow: hidden;
    }

    .shop-main-column,
    .shop-section,
    .gallery-carousel,
    .gallery-track,
    .gallery-slide {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .gallery-carousel,
    .mama-card {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .similar-slider {
        grid-auto-columns: minmax(220px, 78%);
    }

    .gallery-slide img,
    .mama-card img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: clamp(240px, 70vw, 330px);
        aspect-ratio: auto;
        object-fit: contain;
        background: #0f0d18;
    }
}

@media (max-width: 520px) {
    .hero {
        align-content: start;
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .search-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .search-box button {
        min-height: 48px;
    }

    .search-box .search-detail-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: start;
        min-height: 34px;
        margin-top: 2px;
        border: 1px solid rgba(255, 250, 241, 0.44);
        background: rgba(255, 250, 241, 0.16);
        color: #fffaf1;
        padding: 0 13px;
        font-size: 12px;
    }

    .search-detail-fields:not([hidden]) {
        display: grid;
        margin-top: 2px;
    }

    .quick-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-filters button {
        min-height: 42px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .global-menu {
        right: 14px;
        left: 14px;
        min-width: 0;
    }
}
