body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f8f9fa;
    margin: 0;
    padding: 40px 20px;
}
.container {
    max-width: 960px;
    margin: 0 auto;
}
header {
    text-align: center;
    margin-bottom: 50px;
}
.site-title {
    margin: 0 0 10px 0;
}
.site-title img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 0 auto;
}
.site-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}
h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    border-bottom: 3px solid #d9381e;
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 25px;
}
.map-frame {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.map-frame iframe,
.map-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-load {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #718096;
    background: #edf2f7;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.map-load:hover,
.map-load:focus-visible {
    background: #e6ecf3;
    color: #d9381e;
}
.map-load-title {
    margin-top: 12px;
    font-size: 1.2rem;
    color: #2c3e50;
}
.map-load-note {
    margin-top: 4px;
    font-size: 0.95rem;
}
.eatery-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eatery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
h3 {
    margin: 0 0 10px 0;
    font-size: 1.35rem;
    color: #1a202c;
}
.location {
    color: #718096;
    font-weight: normal;
    font-size: 1rem;
    font-style: italic;
}
.location a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #a0aec0;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.location a:hover,
.location a:focus-visible {
    color: #d9381e;
    border-bottom-color: #d9381e;
}
p {
    margin: 0 0 16px 0;
    color: #4a5568;
    font-size: 1.05rem;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #edf2f7;
    cursor: zoom-in;
}
.gallery img.focus-top {
    object-position: center 25%;
}
.gallery img.focus-upper {
    object-position: center 35%;
}
.gallery img.focus-lower {
    object-position: center 56%;
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.88);
    cursor: zoom-out;
    z-index: 999;
}
.lightbox.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox img {
    max-width: 100%;
    max-height: calc(100% - 60px);
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
    margin: 14px 0 0 0;
    color: #f1f1f1;
    font-size: 0.95rem;
    text-align: center;
    max-width: 700px;
}
.lightbox-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
    color: #d9381e;
}
.site-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}
.site-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #718096;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer a {
    color: #4a5568;
}
.site-footer a:hover,
.site-footer a:focus-visible {
    color: #d9381e;
}
