/* ristoranti.app — Theme CSS v3.0 · Editorial · Photo-hero · Eco-cards */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --gc:      #9a3412;
  --gc-dk:   #7c2d12;
  --gc-lt:   #fed7aa;
  --gc-bg:   #fff7ed;
  --earth:   #3d1f0a;
  --earth-lt:#fffbeb;
  --sand:    #fffaf3;
  --ink:     #1a1a1a;
  --ink2:    #2d2d2d;
  --muted:   #6b7280;
  --line:    #e5e7eb;
  --bg:      #ffffff;
  --r:       12px;
  --r-lg:    20px;
  --sh:      0 1px 8px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --sh-lg:   0 4px 24px rgba(0,0,0,.1), 0 12px 40px rgba(0,0,0,.07);
  --ease:    cubic-bezier(.22,1,.36,1);
  --font:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max:     1280px;
  --px:      clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { margin: 0 !important; overflow-x: hidden; scroll-behavior: smooth; }
body.rist-body {
  margin: 0; background: var(--sand); color: var(--ink);
  font-family: var(--font); overflow-x: hidden; -webkit-font-smoothing: antialiased;
  font-size: 15px; line-height: 1.6;
}
body.rist-no-scroll { overflow: hidden; }
body.admin-bar .rist-hdr { top: 32px; }
@media(max-width:782px) { body.admin-bar .rist-hdr { top: 46px; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.rist-site { width: 100%; min-height: 100vh; }
.rist-main { width: 100%; }

/* ── Progress bar ─────────────────────────────────────────── */
.rist-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--gc), #d97706);
  transform-origin: left; transform: scaleX(0); pointer-events: none;
}

/* ── Back to top ──────────────────────────────────────────── */
.rist-btt {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--gc); color: #fff; font-size: 18px; cursor: pointer;
  box-shadow: var(--sh-lg); opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s; display: flex; align-items: center; justify-content: center;
}
.rist-btt.is-visible { opacity: 1; transform: translateY(0); }
.rist-btt:hover { background: var(--gc-dk); }

/* ── Header ───────────────────────────────────────────────── */
.rist-hdr {
  position: sticky; top: 0; z-index: 200; height: 64px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.rist-brand { display: flex; align-items: center; gap: 8px; }
.rist-brand-logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gc); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex: 0 0 auto;
}
.rist-brand-name {
  font-size: 18px; font-weight: 800; letter-spacing: -.04em; color: var(--ink);
}
.rist-brand-name span { color: var(--gc); }
.rist-nav-desk { display: flex; align-items: center; gap: 2px; }
.rist-nav-desk a {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 7px 12px; border-radius: 8px; transition: color .15s, background .15s;
  white-space: nowrap;
}
.rist-nav-desk a:hover { color: var(--ink); background: #f3f4f6; }
.rist-nav-desk .rist-nav-icon { font-size: 15px; }
.rist-hdr-right { display: flex; align-items: center; gap: 10px; }
.rist-nav-gestore {
  font-size: 13px; font-weight: 700; color: var(--ink); padding: 7px 14px;
  border: 1.5px solid var(--line); border-radius: 999px; transition: all .15s;
}
.rist-nav-gestore:hover { background: #f3f4f6; }
.rist-nav-login {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--gc); border-radius: 999px; padding: 8px 18px;
  transition: background .15s;
}
.rist-nav-login:hover { background: var(--gc-dk); color: #fff; }
.rist-burger {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--line); background: #fff;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex: 0 0 40px;
}
.rist-burger span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  display: block; transition: transform .2s, opacity .2s;
}
.rist-burger[aria-expanded=true] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rist-burger[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.rist-burger[aria-expanded=true] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.rist-drawer {
  position: fixed; inset: 64px 0 0 0; z-index: 190;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.rist-drawer.is-open { opacity: 1; pointer-events: all; }
.rist-drawer-inner {
  position: absolute; top: 0; left: 0; right: 0;
  background: #fff; padding: 10px 24px 28px;
  border-bottom: 1px solid var(--line); box-shadow: var(--sh-lg);
  transform: translateY(-100%); transition: transform .28s var(--ease);
}
.rist-drawer.is-open .rist-drawer-inner { transform: translateY(0); }
.rist-drawer-inner a {
  display: block; padding: 13px 0; font-size: 16px; font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.rist-drawer-inner a:last-child { border-bottom: none; }

/* ── Hero — full-screen photo ─────────────────────────────── */
.rist-hero {
  position: relative; min-height: 620px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #1a2e1a;
}
.rist-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: .55; transition: opacity 1s;
}
.rist-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.75) 100%);
}
.rist-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 780px; margin: 0 auto; padding: 80px var(--px) 60px;
  color: #fff;
}
.rist-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; color: #fed7aa;
  margin-bottom: 20px; backdrop-filter: blur(8px); text-transform: uppercase;
}
.rist-hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #d97706; flex: 0 0 auto;
  animation: gcampPulse 2s ease-out infinite;
}
@keyframes gcampPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.rist-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  margin: 0 0 16px; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.rist-hero-h1 em {
  font-style: italic; color: #f59e0b;
}
.rist-hero-sub {
  font-size: clamp(15px, 2.2vw, 19px); font-weight: 400; line-height: 1.55;
  color: rgba(255,255,255,.85); margin: 0 0 32px;
}
/* Search bar — white pill */
.rist-hero-search {
  display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); overflow: hidden;
  max-width: 580px; margin: 0 auto 24px;
}
.rist-search-icon { font-size: 16px; padding: 0 14px 0 20px; color: var(--muted); flex: 0 0 auto; }
.rist-search-input {
  flex: 1; border: none; outline: none; height: 56px;
  font-size: 15px; font-family: var(--font); color: var(--ink);
  background: transparent; padding: 0 8px;
}
.rist-search-input::placeholder { color: #9ca3af; }
.rist-search-btn {
  flex: 0 0 auto; height: 44px; border-radius: 999px; border: none;
  background: var(--gc); color: #fff; font-size: 14px; font-weight: 700;
  padding: 0 22px; cursor: pointer; margin: 6px 6px 6px 0;
  display: flex; align-items: center; gap: 8px;
  transition: background .18s;
}
.rist-search-btn:hover { background: var(--gc-dk); }
/* Suggested searches */
.rist-hero-suggest {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 20px;
}
.rist-hero-suggest-item {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85);
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background .18s;
}
.rist-hero-suggest-item:hover { background: rgba(255,255,255,.22); }
/* Category chips */
.rist-hero-cats {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.rist-hero-cat {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background .18s, transform .18s;
  display: flex; align-items: center; gap: 6px;
}
.rist-hero-cat:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }

/* ── Stats bar ────────────────────────────────────────────── */
.rist-stats {
  background: var(--gc); padding: 28px var(--px);
}
.rist-stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  text-align: center;
}
.rist-stat { color: #fff; border-right: 1px solid rgba(255,255,255,.2); }
.rist-stat:last-child { border-right: none; }
.rist-stat-val {
  display: block; font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -.04em; color: #fed7aa; line-height: 1;
  margin-bottom: 5px;
}
.rist-stat-lbl {
  display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.65);
  letter-spacing: .03em;
}

/* ── Regions tab bar ──────────────────────────────────────── */
.rist-regions {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 64px; z-index: 100;
}
.rist-regions-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: center;
  gap: 0; overflow-x: auto; scrollbar-width: none;
  padding: 0 var(--px); -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.rist-regions-inner::-webkit-scrollbar { display: none; }
.rist-region-btn {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 22px 12px; border: none; border-bottom: 2px solid transparent;
  background: transparent; color: var(--muted); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .18s; white-space: nowrap; min-width: 72px;
}
.rist-region-icon { font-size: 26px; line-height: 1; display: block; transition: transform .18s; }
.rist-region-btn:hover { color: var(--ink); border-bottom-color: var(--line); }
.rist-region-btn.is-active { color: var(--gc); border-bottom-color: var(--gc); font-weight: 700; }
.rist-region-btn:hover .rist-region-icon { transform: scale(1.15); }
.rist-region-btn.is-active .rist-region-icon { transform: scale(1.1); }

/* ── Section wrapper ──────────────────────────────────────── */
.rist-section {
  max-width: var(--max); margin: 0 auto; padding: 40px var(--px);
}
.rist-section-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.rist-section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gc); margin-bottom: 6px; display: block;
}
.rist-section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px); font-weight: 800;
  letter-spacing: -.03em; margin: 0; color: var(--ink);
}
.rist-section-link {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--gc);
  border: 1.5px solid var(--gc); border-radius: 999px; padding: 7px 16px;
  transition: all .18s; white-space: nowrap;
}
.rist-section-link:hover { background: var(--gc); color: #fff; }

/* ── Cards grid — 4 columns ───────────────────────────────── */
.rist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rist-grid.rist-grid-3 { grid-template-columns: repeat(3, 1fr); }
.rist-grid.is-loading { opacity: .4; pointer-events: none; }
.rist-grid-empty {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.rist-grid-empty span { font-size: 48px; }

/* ── Card ─────────────────────────────────────────────────── */
.rist-card {
  border-radius: var(--r); background: var(--bg);
  box-shadow: var(--sh); border: 1px solid rgba(0,0,0,.06);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .2s;
}
.rist-card.is-visible { opacity: 1; transform: translateY(0); }
.rist-card.is-visible:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.rist-card-img {
  position: relative; height: 200px; display: block;
  overflow: hidden; background: #e5e7eb; flex: 0 0 auto;
}
.rist-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.rist-card:hover .rist-card-img img { transform: scale(1.04); }
.rist-card-img-ph {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 40px;
  background: linear-gradient(135deg, #166534, #052e16);
  color: rgba(255,255,255,.3);
}
/* Type badge — top left */
.rist-card-type {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
/* Verified badge — top right */
.rist-card-verified {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 3px 8px;
  font-size: 10px; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.rist-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.rist-card-body h3 { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.rist-card-body h3 a:hover { color: var(--gc); }
.rist-card-loc { margin: 0; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
/* Eco tags */
.rist-card-eco-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 6px 0; }
.rist-eco-tag {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 9px; font-size: 11px; font-weight: 600; color: var(--ink);
  background: #f9fafb; font-family: monospace;
}
/* Card footer */
.rist-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line);
}
.rist-card-price { font-size: 14px; font-weight: 800; color: var(--ink); }
.rist-card-price strong { color: var(--gc); }
.rist-card-price span { font-size: 11px; font-weight: 500; color: var(--muted); }
.rist-card-cta { font-size: 12px; font-weight: 700; color: var(--gc); transition: gap .15s; }
.rist-card-cta:hover { text-decoration: underline; }

/* ── AI Banner ────────────────────────────────────────────── */
.rist-ai-banner {
  background: var(--gc); border-radius: var(--r-lg);
  padding: 44px 40px; text-align: center; color: #fff;
  margin: 0 var(--px);
}
.rist-ai-banner-inner { max-width: 600px; margin: 0 auto; }
.rist-ai-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.rist-ai-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px); font-weight: 800;
  margin: 0 0 10px; line-height: 1.15;
}
.rist-ai-banner p { font-size: 15px; color: rgba(255,255,255,.75); margin: 0 0 22px; line-height: 1.6; }
.rist-ai-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f59e0b; color: #052e16; border-radius: 999px;
  padding: 12px 28px; font-size: 14px; font-weight: 800;
  transition: transform .18s, box-shadow .18s;
}
.rist-ai-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* ── Eco filters grid ─────────────────────────────────────── */
.rist-eco-filters { background: var(--sand); padding: 32px var(--px); }
.rist-eco-filters-inner { max-width: var(--max); margin: 0 auto; }
.rist-eco-filters-h { text-align: center; margin-bottom: 20px; }
.rist-eco-filters-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gc); display: block; margin-bottom: 6px; }
.rist-eco-filters-h h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: var(--ink); margin: 0;
}
.rist-eco-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 20px; }
.rist-eco-chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px; border-radius: var(--r);
  border: 1px solid var(--line); background: #fff;
  font-size: 12px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: all .18s; text-align: center;
}
.rist-eco-chip-icon { font-size: 24px; }
.rist-eco-chip:hover { border-color: var(--gc); background: var(--gc-bg); color: var(--gc); }
.rist-eco-chip.is-active { border-color: var(--gc); background: var(--gc-bg); color: var(--gc); font-weight: 700; }

/* ── Why section ──────────────────────────────────────────── */
.rist-why { background: var(--earth-lt); padding: 56px var(--px); }
.rist-why-inner { max-width: var(--max); margin: 0 auto; }
.rist-why h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 38px); font-weight: 800;
  text-align: center; margin: 0 0 32px; color: var(--ink);
}
.rist-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rist-why-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--sh);
}
.rist-why-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gc-bg); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px; color: var(--gc);
}
.rist-why-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.rist-why-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Map section ──────────────────────────────────────────── */
.rist-map-section { padding: 0; }
.rist-map-header {
  max-width: var(--max); margin: 0 auto; padding: 32px var(--px) 16px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.rist-map-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px); font-weight: 800; margin: 0; color: var(--ink);
}
#rist-map {
  width: 100%; height: 480px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

/* ── Weekend editorial ────────────────────────────────────── */
.rist-editorial { background: var(--earth-lt); padding: 48px var(--px); }
.rist-editorial-inner { max-width: var(--max); margin: 0 auto; }
.rist-editorial-icon { font-size: 28px; display: block; text-align: center; margin-bottom: 10px; color: var(--gc); }
.rist-editorial h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px); font-weight: 800;
  text-align: center; margin: 0 0 5px; color: var(--ink);
}
.rist-editorial-sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.rist-editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rist-editorial-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.rist-editorial-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.rist-editorial-img { height: 160px; background: linear-gradient(135deg, var(--gc), #84cc16); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.rist-editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.rist-editorial-body { padding: 16px; }
.rist-editorial-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.rist-editorial-tag {
  background: #f3f4f6; border-radius: 999px; padding: 2px 9px;
  font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .03em;
}
.rist-editorial-body h3 { font-size: 14px; font-weight: 700; margin: 0 0 5px; color: var(--ink); line-height: 1.3; }
.rist-editorial-body p { font-size: 12px; color: var(--muted); margin: 0 0 8px; line-height: 1.55; }
.rist-editorial-date { font-size: 11px; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────── */
.rist-footer { background: #3d1f0a; padding: 48px var(--px) 0; }
.rist-footer-inner { max-width: var(--max); margin: 0 auto; }
.rist-footer-top {
  display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.rist-footer-brand-col { }
.rist-footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rist-footer-logo-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gc);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.rist-footer-brand-name { font-size: 17px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.rist-footer-brand-name span { color: #f59e0b; }
.rist-footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0 0 14px; }
.rist-footer-network-link {
  font-size: 12px; color: #f59e0b; font-weight: 600; display: inline-flex; align-items: center; gap: 5px;
}
.rist-footer h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin: 0 0 12px;
}
.rist-footer a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55); font-size: 13px; margin: 0 0 8px;
  transition: color .15s;
}
.rist-footer a:hover { color: #fff; }
.rist-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 12px; flex-wrap: wrap;
}
.rist-footer-bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,.3); }
.rist-footer-bottom a { color: #f59e0b; font-weight: 600; font-size: 12px; }

/* ── Map popup ────────────────────────────────────────────── */
.rist-map-popup { font-family: var(--font); min-width: 200px; }
.rist-map-popup img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.rist-map-popup-title { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.rist-map-popup-loc { font-size: 11px; color: var(--muted); margin: 0 0 6px; }
.rist-map-popup-price { font-size: 13px; font-weight: 800; color: var(--gc); margin: 0 0 8px; }
.rist-map-popup-link { display: inline-block; color: var(--gc); font-size: 12px; font-weight: 700; }

/* ── Single ────────────────────────────────────────────────── */
.rist-single { max-width: 900px; margin: 36px auto; padding: 0 var(--px) 72px; }
.rist-single-hero { border-radius: var(--r-lg); overflow: hidden; height: 360px; background: linear-gradient(135deg,var(--gc),var(--gc-dk)); display: flex; align-items: center; justify-content: center; font-size: 72px; margin-bottom: 28px; }
.rist-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.rist-single h1 { font-family: var(--font-serif); font-size: clamp(26px,5vw,46px); letter-spacing: -.03em; font-weight: 800; margin: 0 0 12px; }
.rist-single-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.rist-single-meta span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.rist-single-content { font-size: 15px; line-height: 1.72; color: #374151; }
.rist-single-eco { background: var(--gc-bg); border-radius: var(--r); padding: 18px; margin-top: 22px; border: 1px solid var(--gc-lt); }
.rist-single-eco h3 { margin: 0 0 10px; font-size: 14px; font-weight: 700; color: var(--gc); }
.rist-single-eco-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 8px; }
.rist-single-eco-chip { background: #fff; border: 1px solid var(--gc-lt); border-radius: 9px; padding: 8px 12px; font-size: 12px; font-weight: 600; }

/* Archive + page */
.rist-archive { max-width: var(--max); margin: 0 auto; padding: 28px var(--px) 56px; }
.rist-archive h1 { font-family: var(--font-serif); font-size: clamp(22px,4vw,36px); font-weight: 800; margin: 0 0 22px; }
.rist-page-wrap { max-width: 740px; margin: 40px auto; padding: 0 var(--px) 72px; }
.rist-page-wrap h1 { font-family: var(--font-serif); font-size: clamp(24px,5vw,40px); font-weight: 800; margin: 0 0 18px; }
.rist-page-wrap .entry-content { font-size: 15px; line-height: 1.75; }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:1100px) {
  .rist-grid { grid-template-columns: repeat(3, 1fr); }
  .rist-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .rist-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rist-eco-grid { grid-template-columns: repeat(4, 1fr); }
}
@media(max-width:900px) {
  .rist-nav-desk { display: none; }
  .rist-burger { display: flex; }
  .rist-grid { grid-template-columns: repeat(2, 1fr); }
  .rist-why-grid { grid-template-columns: 1fr 1fr; }
  .rist-editorial-grid { grid-template-columns: 1fr 1fr; }
  .rist-footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .rist-hdr { height: 60px; padding: 0 16px; }
  .rist-drawer { top: 60px; }
  .rist-regions { top: 60px; }
  .rist-hero { min-height: 520px; }
  .rist-hero-content { padding: 56px 20px 44px; }
  .rist-hero-h1 { font-size: clamp(34px, 10vw, 44px); }
  .rist-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .rist-grid { grid-template-columns: 1fr; }
  .rist-why-grid { grid-template-columns: 1fr; }
  .rist-editorial-grid { grid-template-columns: 1fr; }
  .rist-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .rist-eco-grid { grid-template-columns: repeat(3, 1fr); }
  #rist-map { height: 340px; }
  .rist-ai-banner { padding: 32px 20px; margin: 0 16px; }
}
@media(max-width:380px) {
  .rist-hero-h1 { font-size: 30px; }
  .rist-eco-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Twemoji img ────────────────────────────────────────────── */
img.emoji { height:1em;width:1em;margin:0 .1em;vertical-align:-0.1em;display:inline-block; }
.rist-region-icon img.emoji { height:28px;width:28px;margin:0;vertical-align:middle; }
.rist-hero-cat img.emoji { height:18px;width:18px;vertical-align:middle; }
.rist-eco-chip-icon img.emoji { height:28px;width:28px;margin:0; }
.rist-card-type img.emoji { height:14px;width:14px;vertical-align:middle;margin-right:2px; }
.rist-footer a img.emoji,.rist-nav-desk a img.emoji { height:16px;width:16px;vertical-align:middle;margin-right:4px; }
