/* ──────────────────────────────────────────────────────────
   WinstonWasHere.com — Tropical Noir (dark restaurant editorial)
   Dark bg · warm amber · Newsreader serif + Plus Jakarta Sans
   Contemporary food-magazine aesthetic. Photos at native dimensions.
   ────────────────────────────────────────────────────────── */

:root {
    /* Surfaces */
    --bg: #080808;
    --surface: #131313;
    --surface-2: #1a1a1a;
    --surface-3: #222222;
    --surface-elev: #1e1c18;

    /* Type */
    --text: #e8e4de;
    --text-mid: rgba(232, 228, 222, 0.62);
    --text-dim: rgba(232, 228, 222, 0.38);
    --text-faint: rgba(232, 228, 222, 0.22);

    /* Accents */
    --amber: #d4952a;
    --amber-light: #e8c068;
    --amber-soft: #f5deb3;
    --amber-glow: rgba(212, 149, 42, 0.14);
    --amber-glow-strong: rgba(212, 149, 42, 0.28);
    --hot: #e05a3a;
    --hot-dark: #c04828;
    --cool: #8ca3b4;
    --jade: #6b8e7f;

    /* Lines */
    --rule: rgba(255, 255, 255, 0.08);
    --rule-strong: rgba(255, 255, 255, 0.14);
    --rule-amber: rgba(212, 149, 42, 0.35);

    /* Geometry */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    /* Type families */
    --serif: 'Newsreader', 'Iowan Old Style', Georgia, serif;
    --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --content-max: 720px;
    --grid-max: 1320px;
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
    min-height: 100vh;
}

::selection { background: var(--amber); color: var(--bg); }

a { color: var(--amber); text-decoration: none; transition: color 0.3s, background 0.3s; }
a:hover { color: var(--amber-light); }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--text);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-optical-sizing: auto;
}
h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.04;
}
h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.018em;
}
h3 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: var(--sans); }
em, i { font-style: italic; }
strong { color: var(--text); font-weight: 700; }

/* ─── TIPBAR (top strip with amber accents) ─── */
.tipbar {
    background: #050505;
    color: var(--text-mid);
    font-size: 0.7rem;
    padding: 10px 24px;
    text-align: center;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid var(--rule);
}
.tipbar a {
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.22em;
}
.tipbar a:hover { color: var(--amber-light); }
.tipbar strong { color: var(--text); }

/* ─── MASTHEAD ─── */
.masthead {
    background: var(--bg);
    padding: 56px 32px 40px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.masthead::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 1px;
    background: var(--amber);
}
.masthead-inner { max-width: var(--grid-max); margin: 0 auto; }
.brand {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.025em;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
}
.brand .em,
.home-hero h1 .em {
    color: var(--amber);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.brand .dot {
    color: var(--hot);
    margin: 0 6px;
    font-size: 0.5em;
    position: relative;
    top: -0.5em;
}
.brand-tag {
    font-size: 0.7rem;
    color: var(--text-mid);
    margin-top: 16px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--sans);
}

/* ─── NAV (sticky, backdrop blur, contemporary) ─── */
.nav {
    position: sticky; top: 0; z-index: 90;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
}
.nav-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    padding: 10px 16px;
}
.nav a {
    color: var(--text-mid);
    text-decoration: none;
    padding: 9px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.25s, background 0.25s;
    border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--amber);
    background: var(--amber-glow);
}

/* ─── HERO PHOTO (native aspect ratio, dark frame) ─── */
.hero-photo {
    background: var(--bg);
    padding: 64px 16px 24px;
    text-align: center;
    position: relative;
}
.hero-photo img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 60px 120px -30px rgba(212, 149, 42, 0.18),
                0 25px 50px -15px rgba(0, 0, 0, 0.6);
}
.hero-photo figcaption {
    max-width: 580px;
    margin: 22px auto 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-mid);
}

/* ─── ARTICLE BODY ─── */
.article-body {
    background: var(--bg);
    padding: 72px 32px;
}
.article-body-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

/* Crumb */
.crumb {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--sans);
}
.crumb a { color: var(--text-mid); text-decoration: none; transition: color 0.25s; }
.crumb a:hover { color: var(--amber); }
.crumb .sep { margin: 0 10px; color: var(--text-faint); }

/* Category tag */
.cat-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.68rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule-amber);
}

/* Dek (italic serif intro) */
.dek {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--text);
    line-height: 1.42;
    margin: 0 0 36px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.008em;
}

/* Meta dateline */
.meta {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
    font-family: var(--sans);
}

/* Body paragraphs */
.article-body p {
    margin: 0 0 1.4em;
    font-size: 1.06rem;
    line-height: 1.78;
    color: var(--text);
}
.article-body p strong { color: var(--amber-light); }

/* Drop cap */
.article-body .dek + p::first-letter,
.article-body .verdict + p::first-letter {
    font-family: var(--serif);
    font-size: 4.2em;
    font-weight: 600;
    color: var(--amber);
    float: left;
    line-height: 0.88;
    margin: 0.06em 0.12em 0 0;
    padding: 0;
}

.article-body h2 {
    margin-top: 2.6em;
    margin-bottom: 0.7em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid var(--rule);
    color: var(--text);
}
.article-body h3 { margin-top: 2em; }
.article-body ul, .article-body ol { margin: 0 0 1.5em; padding-left: 24px; color: var(--text); }
.article-body li { margin-bottom: 0.5em; line-height: 1.7; }

/* ─── INFO BLOCK (dark card with amber labels) ─── */
.info-block {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin: 48px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 26px 36px;
}
.info-block > div { min-width: 0; }
.info-block .value,
.info-block .value a {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.info-block .label {
    font-family: var(--sans);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 8px;
}
.info-block .value {
    font-family: var(--serif);
    font-size: 1.08rem;
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.35;
}
.info-block .value a {
    color: var(--amber-light);
    border-bottom: 1px solid var(--rule-amber);
    transition: border-color 0.3s;
}
.info-block .value a:hover { border-bottom-color: var(--amber); }

/* ─── VERDICT (amber-bordered dark card) ─── */
.verdict {
    background: linear-gradient(135deg, var(--surface-elev), var(--surface));
    border: 1px solid var(--rule-amber);
    color: var(--text);
    padding: 44px 40px;
    margin: 56px 0;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(212, 149, 42, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.verdict::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 1px;
    background: var(--amber);
}
.verdict .rating {
    font-family: var(--serif);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.025em;
}
.verdict .rating .max {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0;
    font-family: var(--sans);
}
.verdict .summary {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text);
    margin-top: 16px;
    line-height: 1.4;
    font-weight: 400;
}

/* ─── HIGHLIGHTS ─── */
.highlights {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--amber);
    padding: 28px 32px;
    margin: 48px 0;
    border-radius: var(--radius-sm);
}
.highlights h4 {
    margin: 0 0 16px;
    font-family: var(--sans);
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    color: var(--amber);
    font-weight: 700;
}
.highlights ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.highlights li {
    color: var(--text);
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}
.highlights li::before {
    content: '◆';
    position: absolute;
    left: 0; top: 0.2em;
    color: var(--amber);
    font-size: 0.6em;
    font-style: normal;
}

/* ─── RESTAURANT SUB-NAV ─── */
.restaurant-subnav {
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
}
.restaurant-subnav-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.rsn-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    font-style: italic;
    letter-spacing: -0.005em;
}
.rsn-links { display: flex; gap: 2px; flex-wrap: wrap; }
.rsn-links a {
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 16px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.25s, background 0.25s;
    border-radius: 999px;
}
.rsn-links a:hover,
.rsn-links a[aria-current="page"] {
    color: var(--amber);
    background: var(--amber-glow);
}

/* ─── MENU PAGE ─── */
.menu-section { margin: 56px 0; }
.menu-section h3 {
    border-bottom: 1px solid var(--rule-amber);
    padding-bottom: 14px;
    margin-bottom: 24px;
    font-family: var(--serif);
    color: var(--text);
    font-style: italic;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px dotted var(--rule);
}
.menu-item .mi-info { flex: 1; }
.menu-item .mi-info h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.005em;
}
.menu-item .mi-info p {
    margin: 0;
    color: var(--text-mid);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
    font-family: var(--serif);
}
.menu-item .mi-price {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--amber);
    white-space: nowrap;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* ─── HOURS TABLE ─── */
.hours-table {
    width: 100%;
    max-width: 480px;
    border-collapse: collapse;
    margin: 32px 0;
    border-top: 1px solid var(--rule);
}
.hours-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rule);
}
.hours-table td:first-child {
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    font-family: var(--sans);
}
.hours-table td:last-child {
    color: var(--amber);
    font-family: var(--mono);
    font-size: 0.9rem;
    text-align: right;
}
.hours-table tr.closed td:last-child {
    color: var(--text-dim);
    font-style: italic;
    font-family: var(--serif);
    font-size: 1rem;
}

/* ─── ACTION BUTTONS ─── */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 36px 0;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--bg);
    padding: 15px 30px;
    border: 1px solid var(--amber);
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.action-btn:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    color: var(--bg);
    transform: translateY(-1px);
}
.action-btn.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--rule-strong);
}
.action-btn.secondary:hover {
    background: var(--amber-glow);
    border-color: var(--amber);
    color: var(--amber-light);
}

/* ─── GALLERY (cinematic, deeper black) ─── */
.gallery-section {
    background: #050505;
    padding: 96px 32px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.gallery-inner { max-width: 1400px; margin: 0 auto; }
.gallery-section h2 {
    color: var(--text);
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.018em;
}
.gallery-section .gallery-sub {
    text-align: center;
    color: var(--amber);
    font-size: 0.7rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    margin-bottom: 72px;
    font-weight: 700;
    font-family: var(--sans);
}

.gallery-grid {
    columns: 1;
    column-gap: 20px;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; column-gap: 28px; } }
@media (min-width: 1100px) { .gallery-grid { columns: 3; column-gap: 32px; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 32px;
    cursor: zoom-in;
    position: relative;
    background: var(--surface);
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
    color: var(--text);
    padding: 40px 18px 16px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--serif);
    font-style: italic;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item .model-tag {
    display: inline-block;
    background: var(--amber);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-style: normal;
    margin-right: 10px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    border-radius: var(--radius-sm);
}
.lightbox .lb-close {
    position: absolute;
    top: 24px; right: 28px;
    background: transparent;
    border: none;
    color: var(--amber);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 8px;
    font-family: var(--serif);
    transition: color 0.3s;
    line-height: 1;
}
.lightbox .lb-close:hover { color: var(--amber-light); }
.lightbox .lb-caption {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    color: var(--text);
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    padding: 0 32px;
}
.lightbox .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212,149,42,0.35);
    color: var(--amber);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    font-family: var(--serif);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    user-select: none;
}
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-nav:hover {
    background: rgba(212,149,42,0.18);
    color: var(--amber-light);
    border-color: var(--amber);
    transform: translateY(-50%) scale(1.08);
}
.lightbox .lb-counter {
    position: absolute;
    top: 24px;
    left: 28px;
    color: var(--amber);
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 640px) {
    .lightbox .lb-nav { width: 44px; height: 44px; font-size: 1.8rem; }
    .lightbox .lb-prev { left: 8px; }
    .lightbox .lb-next { right: 8px; }
}

/* ─── HUB HERO ─── */
.hub-hero {
    background: var(--bg);
    padding: 96px 32px 56px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.hub-hero .crumb { display: inline-block; }
.hub-hero h1 {
    margin: 24px 0 16px;
    font-style: italic;
    font-weight: 500;
}
.hub-hero .dek {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-mid);
}

/* ─── RESTAURANT CARDS (dark, amber hover) ─── */
.restaurant-grid {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 72px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 56px 32px;
}
.restaurant-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.restaurant-card .card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface);
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    position: relative;
}
.restaurant-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    box-shadow: inset 0 0 0 1px var(--rule);
    pointer-events: none;
}
.restaurant-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.92) saturate(0.95);
}
.restaurant-card:hover .card-image img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1.05);
}
.restaurant-card .card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.restaurant-card .cuisine-tag {
    font-family: var(--sans);
    font-size: 0.65rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 10px;
}
.restaurant-card h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text);
}
.restaurant-card h3 a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.restaurant-card:hover h3 { color: var(--amber); }
.restaurant-card .card-meta {
    font-family: var(--sans);
    font-size: 0.74rem;
    color: var(--text-mid);
    margin-bottom: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}
.restaurant-card .card-verdict {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.restaurant-card .card-foot {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--rule);
    padding-top: 18px;
}
.restaurant-card .card-rating {
    color: var(--amber);
    font-weight: 600;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: -0.015em;
}
.restaurant-card .card-rating span {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-family: var(--sans);
}
.restaurant-card .card-price {
    color: var(--text-mid);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-family: var(--mono);
}

/* ─── HOMEPAGE ─── */
.home-hero {
    background: var(--bg);
    padding: 120px 32px 80px;
    text-align: center;
    position: relative;
}
.home-hero h1 {
    font-size: clamp(3.4rem, 8.5vw, 6.8rem);
    margin: 0 0 28px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.home-hero p {
    max-width: 560px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-mid);
    font-family: var(--serif);
    font-style: italic;
    line-height: 1.5;
}
.home-hero::after {
    content: '';
    display: block;
    width: 48px; height: 1px;
    background: var(--amber);
    margin: 56px auto 0;
}

.city-tiles {
    max-width: var(--grid-max);
    margin: 56px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.city-tile {
    background: var(--surface);
    color: var(--text);
    padding: 48px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: block;
    transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    text-align: center;
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.city-tile::before {
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 1px;
    background: var(--amber);
    transition: width 0.4s ease;
}
.city-tile:hover {
    background: var(--surface-elev);
    border-color: var(--rule-amber);
    transform: translateY(-3px);
    color: var(--text);
}
.city-tile:hover::before { width: 56px; }
.city-tile .country {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--amber);
    margin-bottom: 14px;
    font-weight: 700;
    font-family: var(--sans);
}
.city-tile h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.018em;
}
.city-tile .count {
    color: var(--text-dim);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--sans);
}

/* ─── FOOTER ─── */
.site-footer {
    background: #050505;
    color: var(--text-mid);
    padding: 80px 32px 40px;
    margin-top: 120px;
    border-top: 1px solid var(--rule);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 1px;
    background: var(--amber);
}
.footer-inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}
.footer-inner h4 {
    color: var(--amber);
    font-family: var(--sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    margin: 0 0 18px;
    font-weight: 700;
}
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { margin-bottom: 10px; }
.footer-inner a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: var(--serif);
    font-style: italic;
}
.footer-inner a:hover { color: var(--amber); }
.footer-brand {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.018em;
}
.footer-brand .em { color: var(--amber); font-style: italic; font-weight: 400; }
.footer-disc {
    grid-column: 1 / -1;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    margin-top: 32px;
    font-size: 0.66rem;
    color: var(--text-dim);
    text-align: center;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--sans);
}

/* ─── MOBILE ─── */
@media (max-width: 700px) {
    body { font-size: 16px; }
    .masthead { padding: 36px 18px 28px; }
    .nav-inner { justify-content: flex-start; }
    .nav a { padding: 7px 11px; font-size: 0.68rem; letter-spacing: 0.13em; }
    .article-body { padding: 48px 22px; }
    .restaurant-grid { padding: 48px 22px; gap: 40px 24px; }
    .verdict { padding: 36px 24px; }
    .hero-photo { padding: 32px 14px 20px; }
    .gallery-section { padding: 64px 16px; }
    .restaurant-subnav-inner { padding: 14px 20px; }
    .rsn-links a { padding: 6px 12px; font-size: 0.66rem; }
    .info-block { padding: 24px 22px; }
    .article-body .dek + p::first-letter,
    .article-body .verdict + p::first-letter {
        font-size: 3.4em;
    }
    .home-hero { padding: 80px 22px 56px; }
}

/* ─── Landing-page prominent gallery ─── */
.landing-gallery {
    margin: 56px -24px 64px;
    padding: 48px 28px 56px;
    background: #060606;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
}
.landing-gallery .lg-title {
    text-align: center;
    color: var(--text);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin: 0 0 36px;
    letter-spacing: -0.018em;
}
.landing-gallery .gallery-grid {
    columns: 1;
    column-gap: 18px;
    max-width: 1300px;
    margin: 0 auto;
}
@media (min-width: 720px) {
    .landing-gallery .gallery-grid { columns: 2; column-gap: 22px; }
    .landing-gallery { margin-left: 0; margin-right: 0; padding: 56px 32px 64px; }
}
@media (min-width: 1100px) {
    .landing-gallery .gallery-grid { columns: 3; column-gap: 26px; }
}
.landing-gallery .gallery-item { margin-bottom: 22px; }
