/* ============================================================
   Рестораны Одессы — rest.solard.one · Premium design
   ============================================================ */
:root {
    --deep: #041220;
    --navy: #061827;
    --navy-2: #0b3c52;
    --sea: #12717f;
    --sea-dark: #0e4d5a;
    --sea-light: #2aa8b8;
    --gold: #e0aa4e;
    --gold-light: #f2c97e;
    --gold-dark: #b8862f;
    --cream: #f7f5f0;
    --bg: #f7f5f0;
    --ink: #17222e;
    --text-soft: #5c6b7a;
    --white: #ffffff;
    --line: #e7e2d8;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(6, 24, 39, 0.08);
    --shadow-lg: 0 24px 60px rgba(6, 24, 39, 0.16);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-italic: 'Cormorant Garamond', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; }

::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--sea), var(--navy-2)); border-radius: 6px; border: 2px solid var(--cream); }

.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }
.center { text-align: center; margin-top: 34px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(7, 24, 39, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); background: rgba(7, 24, 39, 0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.logo-img {
    width: 44px; height: 44px; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14), 0 6px 18px rgba(0, 0, 0, 0.4);
    animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow { 0%,100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.14), 0 6px 18px rgba(0,0,0,.4);} 50% { box-shadow: 0 0 0 5px rgba(224,170,78,0.35), 0 6px 22px rgba(0,0,0,.45);} }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .3px; color: #fff; }
.logo-text em { font-style: normal; color: var(--gold); }
.nav { display: flex; gap: 6px; }
.nav a {
    color: rgba(255, 255, 255, 0.82); font-weight: 500; padding: 9px 15px; border-radius: 999px; font-size: 15px;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav a.active { color: var(--gold); background: rgba(224, 170, 78, 0.14); }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; color: #fff; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
    transition: all .25s ease; border: 2px solid transparent; cursor: pointer; letter-spacing: .2px;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark)); color: #2a1d05; box-shadow: 0 10px 26px rgba(212, 162, 78, 0.42); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(212, 162, 78, 0.55); color: #2a1d05; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(23, 34, 46, 0.35); }
.btn-ghost-dark:hover { background: rgba(23, 34, 46, 0.06); color: var(--ink); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--sea-dark); border-color: var(--sea); }
.btn-outline:hover { background: var(--sea); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18, 113, 127, 0.3); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(165deg, #030d19 0%, #082338 34%, #0d4152 70%, #13707f 100%); }
.hero-shine {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 90vw; height: 90vw; max-width: 1200px; max-height: 1200px;
    background: radial-gradient(circle, rgba(224, 170, 78, 0.16) 0%, rgba(224, 170, 78, 0.05) 34%, transparent 60%);
    border-radius: 50%;
}
.hero-wave { position: absolute; bottom: -10px; left: 0; width: 200%; height: 110px; background-repeat: repeat-x; background-size: 1440px 110px; will-change: transform; }
.hero-wave-a { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q360,20 720,54 T1440,50 L1440,110 L0,110 Z' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E"); animation: waveMove 18s linear infinite; }
.hero-wave-b { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,70 Q360,30 720,62 T1440,58 L1440,110 L0,110 Z' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E"); animation: waveMove 26s linear infinite reverse; }
.hero-wave-c { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q360,40 720,72 T1440,68 L1440,110 L0,110 Z' fill='rgba(255,255,255,0.045)'/%3E%3C/svg%3E"); animation: waveMove 34s linear infinite; }
@keyframes waveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.float-emoji { position: absolute; font-size: 40px; opacity: 0.55; animation: floaty 7s ease-in-out infinite; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3)); }
.e1 { top: 16%; left: 7%; font-size: 46px; animation-delay: 0s; }
.e2 { top: 24%; right: 12%; font-size: 38px; animation-delay: 1.2s; }
.e3 { top: 58%; left: 12%; font-size: 30px; animation-delay: 2.1s; }
.e4 { bottom: 18%; right: 8%; font-size: 48px; animation-delay: 3s; }
.e5 { top: 44%; right: 42%; font-size: 26px; animation-delay: .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-22px) rotate(5deg); } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 70px 20px 120px; width: 100%; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 7px 16px; border-radius: 999px; font-size: 13px; letter-spacing: .8px; text-transform: uppercase;
    color: var(--gold-light); backdrop-filter: blur(4px);
}
.hero-title { font-size: clamp(40px, 5.4vw, 66px); margin: 24px 0 18px; text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25); }
.hero-title .grad {
    background: linear-gradient(120deg, var(--gold-light), var(--gold) 40%, #ffd98a 60%, var(--gold));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { max-width: 560px; font-size: 18px; color: rgba(255, 255, 255, 0.86); }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--gold); }
.stat span { color: rgba(255, 255, 255, 0.72); font-size: 14px; margin-top: 6px; letter-spacing: .4px; }

.hero-art-wrap { position: relative; }
.hero-art { width: 100%; border-radius: 26px; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12); will-change: transform; }
.hero-art-card {
    position: absolute; padding: 12px 18px; border-radius: 14px; font-size: 14px; font-weight: 600; color: #fff;
    background: rgba(7, 24, 39, 0.78); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); display: flex; align-items: center; gap: 9px;
}
.hero-art-card i { color: var(--gold); }
.card-a { top: 8%; right: -2%; animation: floaty 6s ease-in-out infinite; }
.card-b { bottom: 8%; left: -4%; animation: floaty 8s ease-in-out infinite; animation-delay: 1s; }

.hero-divider { display: block; width: 100%; height: 90px; margin-bottom: -1px; position: relative; z-index: 3; }

/* ---------- Marquee ---------- */
.marquee { background: linear-gradient(90deg, var(--navy), var(--navy-2)); border-top: 1px solid rgba(255, 255, 255, 0.07); border-bottom: 1px solid rgba(255, 255, 255, 0.07); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { display: inline-flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.85); font-weight: 500; font-size: 15px; padding: 0 26px; white-space: nowrap; }
.mq-item::after { content: "✦"; color: var(--gold); font-size: 12px; }
.mq-item i { color: var(--gold); }

/* ---------- Sections ---------- */
.section { position: relative; padding: 96px 20px; }
.section-light { background: #fff; }
.section-light::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(6,24,39,0.06)' stroke-width='1.2'%3E%3Cpath d='M-10,60 Q20,30 60,60 T130,60'/%3E%3Cpath d='M-10,78 Q20,48 60,78 T130,78'/%3E%3Cpath d='M-10,42 Q20,12 60,42 T130,42'/%3E%3Cpath d='M-10,96 Q20,66 60,96 T130,96'/%3E%3Cpath d='M-10,24 Q20,-6 60,24 T130,24'/%3E%3C/g%3E%3C/svg%3E");
}
.section > .container { position: relative; z-index: 2; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.kicker {
    display: inline-block; text-transform: uppercase; letter-spacing: 2.4px; font-size: 12.5px; font-weight: 700;
    color: var(--sea); background: rgba(18, 113, 127, 0.09); padding: 6px 15px; border-radius: 999px; margin-bottom: 16px;
}
.kicker i { margin-right: 5px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 44px); color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 17px; }

/* ---------- Featured SEAESTA ---------- */
.featured {
    position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
    background: #fff; border-radius: 30px; padding: 40px; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(224, 170, 78, 0.35); overflow: hidden;
}
.featured::before { content: ""; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(224, 170, 78, 0.22), transparent 70%); }
.featured::after { content: ""; position: absolute; bottom: -100px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(18, 113, 127, 0.16), transparent 70%); }
.featured-media { position: relative; z-index: 2; }
.featured-media img { border-radius: 22px; box-shadow: 0 30px 70px rgba(6, 24, 39, 0.3); }
.featured-float { position: absolute; font-size: 52px; filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25)); animation: floaty 6s ease-in-out infinite; }
.featured-float.f2 { bottom: 6%; right: 6%; font-size: 40px; animation-delay: 1.5s; }
.featured-info { position: relative; z-index: 2; }
.badge-static { position: static; display: inline-block; }
.badge-old { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }
.featured-title { font-size: clamp(34px, 4.6vw, 50px); color: var(--navy); margin: 16px 0 12px; }
.featured-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.featured-rating .review-stars { color: var(--gold); font-size: 20px; }
.featured-rating strong { font-size: 22px; color: var(--navy); }
.featured-rating em { font-style: normal; color: var(--text-soft); }
.featured-text { color: var(--text-soft); margin-bottom: 18px; font-size: 16.5px; }
.featured-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.featured-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Filters / catalog ---------- */
.filters { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    padding: 9px 19px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
    cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-soft); transition: all .22s ease;
}
.chip:hover { border-color: var(--sea); color: var(--sea); transform: translateY(-2px); }
.chip.active { background: linear-gradient(135deg, var(--sea), var(--sea-dark)); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(18, 113, 127, 0.3); }
.search-box { position: relative; flex: 1; min-width: 250px; max-width: 370px; }
.search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-soft); }
.search-box input {
    width: 100%; padding: 12px 16px 12px 44px; border-radius: 999px; border: 1px solid var(--line);
    font-size: 15px; font-family: var(--font-body); background: #fff; transition: box-shadow .2s ease, border-color .2s ease;
}
.search-box input:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px rgba(18, 113, 127, 0.12); }

.rest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.rest-grid .reveal:nth-child(4n+1) { transition-delay: .05s; }
.rest-grid .reveal:nth-child(4n+2) { transition-delay: .12s; }
.rest-grid .reveal:nth-child(4n+3) { transition-delay: .19s; }
.rest-grid .reveal:nth-child(4n) { transition-delay: .26s; }
.rest-card {
    background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
    display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; position: relative;
}
.rest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.rest-card.featured { box-shadow: 0 0 0 2px var(--gold), var(--shadow); }
.rest-card.is-hidden { display: none; }
.rest-card-media { position: relative; display: block; height: 210px; overflow: hidden; }
.rest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.65,.3,1); }
.rest-card:hover .rest-card-img { transform: scale(1.08) rotate(0.5deg); }
.media-shine { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%); transform: translateX(-120%); transition: transform .9s ease; pointer-events: none; }
.rest-card:hover .media-shine { transform: translateX(120%); }
.badge { position: absolute; padding: 6px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff; z-index: 3; display: inline-flex; align-items: center; gap: 5px; }
.badge-rating { top: 14px; left: 14px; background: rgba(6, 24, 39, 0.82); backdrop-filter: blur(6px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.badge-rating i { color: var(--gold); }
.badge-review-count { top: 14px; right: 14px; background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); }
.badge-review-count i { color: var(--gold-light); }
.play-hint {
    position: absolute; bottom: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold); color: #2a1d05; display: grid; place-items: center; font-size: 15px;
    opacity: 0; transform: translateY(8px); transition: all .3s ease; z-index: 3;
}
.rest-card:hover .play-hint { opacity: 1; transform: none; }
.rest-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.rest-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rest-card-title { font-size: 24px; }
.rest-card-title a { color: var(--navy); }
.rest-card-title a:hover { color: var(--sea); }
.rest-card-city { font-size: 13.5px; color: var(--text-soft); white-space: nowrap; }
.rest-card-city i { color: var(--sea); margin-right: 5px; }
.rest-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; background: rgba(18, 113, 127, 0.1); color: var(--sea-dark); font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
.rest-card-text { font-size: 14.5px; color: var(--text-soft); }
.rest-card-foot { display: flex; justify-content: space-between; align-items: center; margin: auto 0 12px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 13.5px; color: var(--text-soft); }
.rest-card-meta i { color: var(--gold); margin-right: 6px; }
.rest-card-check { font-weight: 800; color: var(--navy); font-size: 14.5px; }
.empty-state { text-align: center; padding: 70px 0; color: var(--text-soft); }
.empty-state i { font-size: 48px; color: #d9d3c6; margin-bottom: 14px; }

/* ---------- Band / gallery ---------- */
.band { position: relative; background-size: cover; background-position: center; background-attachment: fixed; color: #fff; padding: 130px 20px; text-align: center; overflow: hidden; }
.band-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(3, 13, 25, 0.9), rgba(13, 65, 82, 0.78)); }
.band-inner { position: relative; z-index: 2; }
.band-kicker { display: inline-block; text-transform: uppercase; letter-spacing: 2.4px; font-size: 12.5px; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; }
.band h2 { font-size: clamp(30px, 5vw, 52px); margin-bottom: 16px; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.band p { font-size: 18px; color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }
.band-rest { background-position: center; }

/* ---------- Features ---------- */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
    background: #fff; border-radius: 20px; padding: 34px 26px; box-shadow: var(--shadow); text-align: center;
    transition: transform .3s ease, box-shadow .3s ease; border: 1px solid rgba(6, 24, 39, 0.04); position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sea), var(--gold)); opacity: 0; transition: opacity .3s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature:hover::before { opacity: 1; }
.feature-icon {
    width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(18, 113, 127, 0.14), rgba(224, 170, 78, 0.2));
    display: grid; place-items: center; font-size: 26px; color: var(--sea-dark); transition: transform .3s ease;
}
.feature:hover .feature-icon { transform: scale(1.1) rotate(-6deg); }
.feature h3 { font-size: 20px; margin-bottom: 8px; color: var(--navy); }
.feature p { font-size: 14.5px; color: var(--text-soft); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.reviews-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.review {
    position: relative; background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow);
    border: 1px solid rgba(224, 170, 78, 0.28);
}
.review::before {
    content: "“"; position: absolute; top: -8px; left: 18px; font-family: var(--font-display); font-size: 74px;
    color: var(--gold); opacity: 0.5; line-height: 1;
}
.review-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; position: relative; z-index: 1; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sea), var(--navy-2)); color: #fff; display: grid; place-items: center;
    font-weight: 700; font-size: 18px; flex-shrink: 0; box-shadow: 0 6px 14px rgba(18, 113, 127, 0.3);
}
.review-meta { flex: 1; }
.review-author { font-weight: 600; color: var(--navy); }
.review-date { font-size: 13px; color: var(--text-soft); }
.review-date i { margin-right: 4px; }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.review-stars.sm { font-size: 14px; }
.review-text { font-size: 15px; color: #3d4855; position: relative; z-index: 1; }

/* ---------- City cards ---------- */
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.city-card {
    position: relative; border-radius: 20px; padding: 26px 20px; color: #fff; text-align: center; overflow: hidden;
    min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.city-card::after { content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.city-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.city-emoji { font-size: 40px; filter: drop-shadow(0 8px 14px rgba(0,0,0,.3)); }
.city-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; position: relative; z-index: 2; }
.city-count { font-size: 12.5px; color: rgba(255, 255, 255, 0.8); position: relative; z-index: 2; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(140deg, var(--deep), var(--navy-2) 55%, var(--sea-dark)); color: #fff; padding: 100px 20px; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(224, 170, 78, 0.14), transparent 60%); }
.cta-inner { position: relative; z-index: 2; }
.cta-emoji { font-size: 64px; margin-bottom: 16px; animation: floaty 6s ease-in-out infinite; }
.cta-inner h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 12px; }
.cta-inner p { max-width: 560px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.85); }

/* ---------- Restaurant page ---------- */
.r-hero { position: relative; color: #fff; overflow: hidden; }
.r-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.05); }
.r-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 13, 25, 0.6) 0%, rgba(3, 13, 25, 0.72) 55%, rgba(7, 24, 39, 0.96) 100%); }
.r-hero-inner { position: relative; z-index: 2; padding: 36px 20px 110px; }
.r-divider { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: 13.5px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.7); flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs a:hover { color: var(--gold); }
.r-hero-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.r-title { font-size: clamp(40px, 6.4vw, 66px); margin: 14px 0 10px; text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4); }
.r-city { font-size: 16.5px; color: rgba(255, 255, 255, 0.9); margin-bottom: 14px; }
.r-city i { color: var(--gold); margin-right: 7px; }
.r-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.r-rating .review-stars { color: var(--gold); font-size: 22px; }
.r-rating strong { font-size: 24px; }
.r-rating em { font-style: normal; color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.r-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.r-tags .tag { background: rgba(255, 255, 255, 0.16); color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); }
.r-hero-actions { display: flex; flex-direction: column; gap: 12px; }
.r-section { padding-top: 60px; }
.r-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.r-h2 { font-size: 30px; color: var(--navy); margin: 0 0 18px; position: relative; padding-bottom: 12px; }
.r-h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.r-desc p { margin-bottom: 16px; font-size: 16px; color: #3d4855; }
.r-main .r-h2 { margin-top: 40px; }
.highlights { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlights li {
    background: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow);
    font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(6, 24, 39, 0.04);
}
.highlights li i {
    width: 26px; height: 26px; border-radius: 50%; background: rgba(18, 113, 127, 0.12); color: var(--sea-dark);
    display: grid; place-items: center; font-size: 12px; flex-shrink: 0;
}
.info-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 26px; position: sticky; top: 96px; border: 1px solid rgba(6, 24, 39, 0.05); }
.info-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.info-card-img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow); }
.info-card-head h3 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.info-card-head .review-stars { font-size: 13px; }
.info-card-head em { font-style: normal; color: var(--text-soft); font-weight: 700; margin-left: 4px; }
.info-row { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-icon {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(18, 113, 127, 0.12), rgba(224, 170, 78, 0.14)); color: var(--sea-dark);
    display: grid; place-items: center; font-size: 15px;
}
.info-body { display: flex; flex-direction: column; font-size: 14px; }
.info-body strong { color: var(--text-soft); font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; }
.info-body a { color: var(--ink); font-weight: 600; }
.info-body a:hover { color: var(--sea); }
.info-links a { display: inline-flex; align-items: center; gap: 6px; color: var(--sea); font-weight: 600; }
.agg-rating { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-soft); flex-wrap: wrap; }
.agg-rating .review-stars { font-size: 22px; }
.agg-rating strong { color: var(--navy); font-size: 22px; }
.agg-rating em { font-style: normal; font-size: 14px; }

/* ---------- Review form ---------- */
.review-form {
    background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 34px;
    display: flex; flex-direction: column; gap: 18px; border: 1px solid rgba(6, 24, 39, 0.05);
}
.review-form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; color: var(--navy); }
.review-form input[type="text"], .review-form textarea {
    padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; font-size: 15px;
    font-family: var(--font-body); background: #faf9f6; transition: box-shadow .2s ease, border-color .2s ease;
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px rgba(18, 113, 127, 0.1); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rate-widget { direction: rtl; display: flex; gap: 3px; font-size: 30px; }
.rate-widget input { display: none; }
.rate-widget label { color: #ddd6c8; cursor: pointer; font-size: 32px; padding: 0 2px; transition: color .15s ease, transform .15s ease; }
.rate-widget label:hover, .rate-widget label:hover ~ label { color: var(--gold); transform: scale(1.15); }
.rate-widget input:checked ~ label { color: var(--gold); }
.form-msg { display: none; padding: 13px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 500; }
.form-msg.ok { display: block; background: rgba(18, 113, 127, 0.12); color: var(--sea-dark); }
.form-msg.err { display: block; background: rgba(200, 60, 60, 0.12); color: #b23b3b; }

/* ---------- Related ---------- */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.related-card {
    display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 16px;
    padding: 14px 16px; box-shadow: var(--shadow); color: var(--ink); font-weight: 600; overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.related-card img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--sea); }
.related-card em { font-style: normal; color: var(--text-soft); font-weight: 400; font-size: 13.5px; }

/* ---------- Footer ---------- */
.footer { background: #071e2f; color: rgba(255, 255, 255, 0.78); padding: 0 20px 36px; position: relative; }
.footer-wave { display: block; width: calc(100% + 40px); margin: -1px -20px 40px; height: 90px; }
.footer .logo-text { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 16px; position: relative; }
.footer-col h4::after { content: ""; display: block; width: 26px; height: 2px; background: var(--gold); margin-top: 8px; border-radius: 2px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff;
    display: grid; place-items: center; font-size: 16px; transition: all .25s ease; border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--gold); color: #2a1d05; transform: translateY(-3px); }
.footer-note { margin-top: 22px; font-size: 13px; color: rgba(255, 255, 255, 0.4); }

.scroll-top {
    position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sea), var(--navy-2)); color: #fff; display: grid; place-items: center;
    cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s; box-shadow: var(--shadow-lg); z-index: 90; border: none;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; padding-bottom: 90px; }
    .hero-art-wrap { max-width: 620px; margin: 0 auto; width: 100%; }
    .hero-art-card.card-a { right: 4%; }
    .hero-art-card.card-b { left: 4%; }
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .featured { grid-template-columns: 1fr; }
    .r-layout { grid-template-columns: 1fr; }
    .info-card { position: static; }
}
@media (max-width: 720px) {
    .nav {
        position: absolute; top: 74px; left: 0; right: 0; background: var(--navy); flex-direction: column;
        padding: 14px; gap: 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: none; box-shadow: var(--shadow-lg);
    }
    .nav.open { display: flex; }
    .nav a { padding: 13px 16px; }
    .nav-toggle { display: block; }
    .section { padding: 64px 20px; }
    .band { padding: 90px 20px; background-attachment: scroll; }
    .hero-stats { gap: 30px; }
    .float-emoji { display: none; }
    .hero-art-card { font-size: 12px; padding: 9px 13px; }
    .featured { padding: 26px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-wave { margin-bottom: 24px; }
    .highlights { grid-template-columns: 1fr; }
    .rest-grid { grid-template-columns: 1fr; }
    .filters { flex-direction: column; align-items: stretch; }
    .search-box { max-width: 100%; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .r-hero-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
