/* sanatsergim.com — design v1 */
:root {
  --ink: #1a1410;
  --ink-soft: #4a4038;
  --muted: #8a7f73;
  --bg: #faf7f2;
  --bg-card: #ffffff;
  --line: #ece6dd;
  --accent: #b8543f;       /* clay red */
  --accent-dark: #963f2c;
  --gold: #b59059;
  --success: #2f7d4f;
  --shadow: 0 4px 20px rgba(26,20,16,0.06);
  --shadow-lift: 0 12px 32px rgba(26,20,16,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 18px 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
.brand .brand-accent { color: var(--accent); font-style: italic; }
.nav {
  display: flex; gap: 28px; align-items: center; flex: 1;
}
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.search-box {
  display: flex; align-items: center; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 6px 10px; gap: 8px; min-width: 200px;
}
.search-box input {
  border: 0; outline: 0; background: transparent; flex: 1; font: inherit; color: var(--ink);
}
.mobile-toggle { display: none; background: 0; border: 0; padding: 6px; }
.mobile-toggle svg { width: 24px; height: 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); border: 0;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  background: var(--ink); color: #fff; text-decoration: none;
  transition: all 0.15s ease;
}
.btn:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn.btn-accent { background: var(--accent); }
.btn.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn.btn-outline:hover { background: var(--ink); color: #fff; }
.btn.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn.btn-lg { padding: 16px 32px; font-size: 17px; }

/* Hero */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, #f4ede0 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 24px; font-weight: 600; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero .lead {
  font-size: 19px; color: var(--ink-soft); line-height: 1.55; max-width: 540px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-collage {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 12px; aspect-ratio: 1/1;
}
.hero-collage .tile {
  border-radius: var(--radius-lg); overflow: hidden; background: #e8ddcb;
}
.hero-collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tile:nth-child(1) { grid-row: span 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

/* Section */
.section { padding: 72px 0; }
.section.alt { background: #f4ede0; }
.section-head { margin-bottom: 40px; display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em; margin: 0; font-weight: 600;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .lead { color: var(--muted); font-size: 16px; margin: 8px 0 0; }
.section-head a.view-all { color: var(--ink-soft); font-weight: 500; font-size: 14px; }
.section-head a.view-all:hover { color: var(--accent); }

/* Grids */
.grid-art {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
.grid-art.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-artist {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.grid-ex {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

/* Art card */
.art-card { background: transparent; transition: transform 0.2s ease; }
.art-card:hover { transform: translateY(-4px); }
.art-card .img-wrap {
  background: #e8ddcb; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; position: relative; margin-bottom: 14px;
}
.art-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.art-card:hover .img-wrap img { transform: scale(1.04); }
.art-card .badge-sold {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff; padding: 4px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
}
.art-card .title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.01em; }
.art-card .meta { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.art-card .price { font-weight: 600; color: var(--ink); font-size: 15px; }

/* Artist card */
.artist-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: all 0.2s ease;
}
.artist-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.artist-card .avatar {
  width: 84px; height: 84px; border-radius: 50%; background: #e8ddcb;
  margin: 0 auto 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px; color: var(--accent);
}
.artist-card .name { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.artist-card .city { color: var(--muted); font-size: 13px; margin: 0 0 14px; }
.artist-card .stat { color: var(--ink-soft); font-size: 13px; }

/* Exhibition card */
.ex-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.2s ease; display: flex; flex-direction: column;
}
.ex-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.ex-card .cover {
  aspect-ratio: 16/10; background: #e8ddcb; overflow: hidden; position: relative;
}
.ex-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.ex-card .status-pill {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,247,242,0.95); padding: 4px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.ex-card .status-pill.ongoing { color: var(--success); }
.ex-card .status-pill.ending { color: var(--accent); }
.ex-card .status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ex-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ex-card .venue { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 6px; font-weight: 600; }
.ex-card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.ex-card .dates { color: var(--ink-soft); font-size: 13px; margin: 0 0 4px; }
.ex-card .city-tag { color: var(--muted); font-size: 13px; margin-top: auto; padding-top: 12px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 16px; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  margin: 0 auto 16px;
}
.step h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; font-weight: 600; }
.step p { color: var(--ink-soft); margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg); padding: 56px 48px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1.15; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0; }
.cta-banner .btn { background: var(--accent); }
.cta-banner .btn:hover { background: var(--accent-dark); }

/* Footer */
.site-footer {
  background: #14110d; color: #ddd5c8; padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: #fff; margin: 0 0 12px; font-weight: 600; }
.footer-brand em { color: var(--accent); font-style: italic; }
.footer-tag { color: #8a7f73; font-size: 14px; margin: 0 0 20px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 14px; font-weight: 600; }
.footer-col a { display: block; color: #8a7f73; font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a241d; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #5e564c; font-size: 13px;
}

/* Page header */
.page-head { padding: 56px 0 32px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); margin: 0 0 12px; font-weight: 600; letter-spacing: -0.02em; }
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head .lead { color: var(--ink-soft); font-size: 17px; max-width: 720px; margin: 0; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }

/* Marketplace layout */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 0 80px; }
.filters {
  background: var(--bg-card); border: 1px solid var(--line);
  padding: 24px; border-radius: var(--radius-lg);
  position: sticky; top: 96px; align-self: start;
}
.filters h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; color: var(--ink-soft); font-weight: 600; }
.filters .group + .group { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.filters label { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.filters label:hover { color: var(--ink); }
.filters input[type="checkbox"], .filters input[type="radio"] { accent-color: var(--accent); }
.filters input[type="number"], .filters select {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--bg);
}
.filters .price-row { display: flex; gap: 8px; }
.shop-main {}
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-count { color: var(--ink-soft); font-size: 14px; }
.sort-select {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); font: inherit;
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0 12px;
  background: var(--bg-card); color: var(--ink-soft); font-weight: 500;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Detail page */
.detail-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; padding: 40px 0 60px; }
.detail-img-main {
  background: #e8ddcb; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/5;
}
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.detail-info h1 { font-family: var(--font-display); font-size: 36px; margin: 0 0 8px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.detail-info .artist-line { font-size: 18px; color: var(--ink-soft); margin: 0 0 24px; }
.detail-info .artist-line a { color: var(--accent); font-weight: 500; }
.detail-info .price-box {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.detail-info .price-num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--ink); margin: 0 0 16px; }
.detail-info .price-box .btn { width: 100%; }
.detail-meta { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--line); }
.detail-meta li { display: flex; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail-meta li span { color: var(--muted); width: 140px; }
.detail-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
.detail-desc h3 { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin: 24px 0 12px; }
.share-row { display: flex; gap: 12px; margin-top: 20px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 13px; color: var(--ink-soft); background: var(--bg-card);
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.artist-mini {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; gap: 16px; align-items: center; margin-bottom: 24px;
}
.artist-mini .avatar { width: 56px; height: 56px; border-radius: 50%; background: #e8ddcb;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; color: var(--accent); flex-shrink: 0; }
.artist-mini .name { font-weight: 600; }
.artist-mini .city { color: var(--muted); font-size: 13px; }

/* Artist page */
.artist-hero {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  padding: 56px 0; align-items: start;
}
.artist-hero .avatar-lg {
  width: 220px; height: 220px; border-radius: var(--radius-lg);
  background: #e8ddcb;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 64px; color: var(--accent);
}
.artist-hero h1 { font-family: var(--font-display); font-size: 44px; margin: 0 0 8px; font-weight: 600; letter-spacing: -0.02em; }
.artist-hero .city { color: var(--muted); margin: 0 0 16px; }
.artist-hero .bio { color: var(--ink-soft); font-size: 16px; max-width: 720px; margin: 0 0 24px; line-height: 1.7; }
.artist-hero .meta-row { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.artist-hero .meta-row strong { color: var(--ink); }
.artist-hero .actions { display: flex; gap: 12px; }

/* Forms */
.form-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px; max-width: 480px; margin: 60px auto;
}
.form-card h1 { font-family: var(--font-display); font-size: 28px; margin: 0 0 8px; font-weight: 600; }
.form-card .lead { color: var(--ink-soft); margin: 0 0 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--bg);
  color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 0; border-color: var(--accent); background: #fff; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; }
.form-foot { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ink-soft); }

.notice {
  padding: 14px 16px; border-radius: var(--radius);
  background: #fff3e8; color: #7a3f1f; border: 1px solid #f5d9bd;
  margin-bottom: 16px; font-size: 14px;
}
.notice.ok { background: #ebf5ee; color: #1f5e3a; border-color: #c6e0cd; }
.notice.warn { background: #fff3e8; color: #7a3f1f; border-color: #f5d9bd; }
.notice.err { background: #faeae8; color: #7a2b21; border-color: #f0c6c0; }

/* Static pages */
.prose { max-width: 720px; margin: 40px auto 80px; padding: 0 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.prose h1 { font-family: var(--font-display); font-size: 36px; color: var(--ink); margin: 0 0 12px; font-weight: 600; }
.prose h2 { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 32px 0 12px; font-weight: 600; }
.prose p, .prose ul, .prose ol { margin: 0 0 16px; }
.prose a { color: var(--accent); }

/* Map layout (sergiler page) */
.map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 24px 24px 60px; align-items: start;
}
.map-col { position: sticky; top: 96px; }
#serMap {
  width: 100%; height: calc(100vh - 200px); min-height: 520px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: #e8ddcb; z-index: 1;
}
.map-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 12px; font-size: 13px; color: var(--ink-soft);
}
.map-legend .lg {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  margin-right: 6px; vertical-align: middle; border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.map-legend .lg.ongoing  { background: #2f7d4f; }
.map-legend .lg.ending   { background: #b8543f; }
.map-legend .lg.upcoming { background: #b59059; }
.map-legend .lg.ended    { background: #999; }

.ex-marker { background: transparent; border: 0; }
.ex-marker-inner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.ex-popup { font-family: var(--font-body); }
.ex-popup strong { font-family: var(--font-display); font-size: 14px; color: var(--ink); display: block; margin-bottom: 8px; }
.ex-popup ul { list-style: none; padding: 0; margin: 0; }
.ex-popup li { padding: 6px 0; border-top: 1px solid var(--line); font-size: 13px; }
.ex-popup li:first-child { border-top: 0; }
.ex-popup li a { color: var(--accent); font-weight: 500; text-decoration: none; }
.ex-popup .d { color: var(--muted); font-size: 11px; }

.list-col {
  max-height: calc(100vh - 160px); overflow-y: auto; padding-right: 8px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.list-col::-webkit-scrollbar { width: 6px; }
.list-col::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.ser-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 14px;
  padding: 14px; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); margin-bottom: 12px; cursor: pointer;
  transition: all 0.15s ease;
}
.ser-row:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateX(-2px); }
.ser-row.active { border-color: var(--accent); background: #faf0eb; }
.ser-row-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); background: #e8ddcb;
}
.ser-row-img img { width: 100%; height: 100%; object-fit: cover; }
.ser-row-img .status-pill {
  position: absolute; top: 6px; left: 6px; padding: 3px 8px;
  border-radius: 999px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(250,247,242,0.95); display: inline-flex; align-items: center; gap: 4px;
}
.ser-row-img .status-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.ser-row-img .status-pill.ongoing  { color: var(--success); }
.ser-row-img .status-pill.ending   { color: var(--accent); }
.ser-row-img .status-pill.upcoming { color: var(--gold); }
.ser-row-img .status-pill.ended    { color: var(--muted); }
.ser-row-body { display: flex; flex-direction: column; }
.ser-row-body .venue { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 4px; font-weight: 600; }
.ser-row-body h3 { font-family: var(--font-display); font-size: 16px; margin: 0 0 6px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.ser-row-body h3 a { color: var(--ink); }
.ser-row-body h3 a:hover { color: var(--accent); }
.ser-row-body .dates { color: var(--ink-soft); font-size: 12px; margin: 0 0 2px; }
.ser-row-body .city-type { color: var(--muted); font-size: 12px; margin: auto 0 0; padding-top: 8px; }

@media (max-width: 980px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-col { position: static; }
  #serMap { height: 380px; min-height: 380px; }
  .list-col { max-height: none; overflow: visible; }
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-art { grid-template-columns: repeat(3, 1fr); }
  .grid-artist { grid-template-columns: repeat(3, 1fr); }
  .grid-ex { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .artist-hero { grid-template-columns: 1fr; }
  .artist-hero .avatar-lg { width: 160px; height: 160px; font-size: 56px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .header-inner { padding: 14px 0; gap: 12px; }
  .nav, .search-box { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 16px; }
  .nav.open a { padding: 8px 0; }
  .hero { padding: 56px 0 40px; }
  .grid-art, .grid-art.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-artist { grid-template-columns: repeat(2, 1fr); }
  .grid-ex { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 48px 0; }
  .art-card .title { font-size: 16px; }
}
