/* ── Skip Link & Screen-Reader Utilities ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: .75rem; outline: 3px solid #fff; outline-offset: 2px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:          #F6F5F1;   /* warm eggshell */
  --bg-2:        #FFFFFF;
  --bg-3:        #EFEEEB;
  --bg-4:        #E6E5E1;

  --border:      rgba(0,0,0,.09);
  --border-2:    rgba(0,0,0,.15);

  --text:        #1C1B2E;
  --text-2:      #6B6880;
  --text-3:      #A8A6BE;

  --accent:      #FF2D78;
  --accent-dim:  rgba(255, 45, 120, .10);
  --accent-glow: 0 4px 20px rgba(255, 45, 120, .22);
  --purple:      #7B2FFF;
  --purple-dim:  rgba(123, 47, 255, .10);
  --gold:        #D49700;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --header-h:    64px;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --shadow:      0 2px 10px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.11);
}

/* ── Typography ───────────────────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246,245,241,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text);
}
.site-logo .logo-icon {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  color: #fff;
}
.site-logo .logo-dot { color: var(--accent); }

.header-cities {
  display: flex;
  align-items: center;
  gap: .2rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.header-cities::-webkit-scrollbar { display: none; }
.header-cities a {
  padding: .35rem .85rem;
  border-radius: var(--radius-lg);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-cities a:hover  { color: var(--text); background: var(--bg-3); }
.header-cities a.active { color: var(--text); background: var(--bg-4); font-weight: 600; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.city-hero {
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.city-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0 1.75rem;
}
.city-hero-title {
  font-family: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.city-hero-country {
  font-size: 1rem;
  color: var(--text-3);
}

/* ── Category Filter ──────────────────────────────────────────────────────── */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(246,245,241,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .75rem clamp(1rem, 4vw, 2.5rem);
}
.filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: var(--radius-lg);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: var(--bg-2);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.filter-pill:hover { color: var(--text); border-color: var(--border-2); background: var(--bg-3); }
.filter-pill.active { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }
.filter-count {
  font-size: .73rem;
  color: var(--text-3);
  background: var(--bg-3);
  padding: .1rem .4rem;
  border-radius: 99px;
}
.filter-pill.active .filter-count { background: var(--accent-dim); color: var(--accent); }

/* ── Venue Grid ───────────────────────────────────────────────────────────── */
.venues-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 5rem;
}
.venues-meta { font-size: .85rem; color: var(--text-3); margin-bottom: 1.75rem; }
.venues-meta strong { color: var(--text-2); }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ── Venue Card ───────────────────────────────────────────────────────────── */
.venue-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}
.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}

.venue-card-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.venue-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.venue-card:hover .venue-card-photo img { transform: scale(1.06); }

.venue-card-no-photo {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 2.5rem;
  color: var(--text-3);
  background: var(--bg-3);
  aspect-ratio: 16/10;
}

.venue-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.venue-card:hover .venue-card-photo-overlay { opacity: 1; }
.venue-card-view {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  padding: .35rem .8rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
}

.venue-card-body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.venue-card-title { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.venue-card-meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.venue-card-categories { display: flex; flex-wrap: wrap; gap: .3rem; }

.badge {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 99px;
  background: var(--purple-dim); color: var(--purple);
  border: 1px solid rgba(123,47,255,.2);
}

/* ── Stars ────────────────────────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; font-size: .9rem; }
.star.full  { color: var(--gold); }
.star.half  { color: var(--gold); opacity: .55; }
.star.empty { color: var(--text-3); }

.venue-card-address {
  font-size: .8rem; color: var(--text-3);
  display: flex; align-items: flex-start; gap: .4rem;
}
.venue-card-address .addr-icon { flex-shrink: 0; margin-top: 1px; }

/* ── Empty State ──────────────────────────────────────────────────────────── */
.empty-state { grid-column: 1/-1; text-align: center; padding: 5rem 2rem; color: var(--text-3); }
.empty-state p { margin-top: .5rem; font-size: .9rem; }

/* ── Venue Detail ─────────────────────────────────────────────────────────── */
.venue-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 6rem;
}
.venue-detail-back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--text-3); margin-bottom: 2rem;
  transition: color var(--transition);
}
.venue-detail-back:hover { color: var(--text-2); }

.venue-gallery { margin-bottom: 2.5rem; }
.venue-gallery-main {
  aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-3);
  margin-bottom: .75rem; cursor: pointer; position: relative;
  box-shadow: var(--shadow);
}
.venue-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.venue-gallery-main:hover img { transform: scale(1.02); }
.venue-gallery-main:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.venue-gallery-no-photo {
  width: 100%; height: 100%;
  display: grid; place-items: center; font-size: 4rem; color: var(--text-3);
  background: var(--bg-3); aspect-ratio: 16/9;
  border-radius: var(--radius-lg); margin-bottom: .75rem;
}

.venue-gallery-thumbs {
  display: flex; gap: .5rem; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--border-2) transparent;
  padding-bottom: .25rem;
}
.venue-gallery-thumb {
  flex-shrink: 0; width: 80px; height: 56px;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: .6;
  padding: 0; background: none; display: block;
}
.venue-gallery-thumb:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; opacity: 1; }
.venue-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.venue-gallery-thumb.active, .venue-gallery-thumb:hover { border-color: var(--accent); opacity: 1; }

.venue-detail-content {
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}
@media (max-width: 768px) {
  .venue-detail-content { grid-template-columns: 1fr; gap: 2rem; }
  .venue-detail-sidebar { order: -1; }
}

.venue-detail-cats { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.venue-detail-title { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: .75rem; }
.venue-detail-rating { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem; }
.venue-detail-rating .stars { font-size: 1.1rem; }
.venue-detail-rating .score { font-size: .85rem; color: var(--text-3); }
.venue-detail-desc { font-size: 1rem; color: var(--text-2); line-height: 1.75; }

.venue-detail-sidebar {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: var(--shadow);
}
.detail-row { display: flex; flex-direction: column; gap: .3rem; }
.detail-row-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.detail-row-value { font-size: .9rem; color: var(--text-2); }
.detail-row-value a { color: var(--accent); word-break: break-all; transition: opacity var(--transition); }
.detail-row-value a:hover { opacity: .75; }
.detail-divider { height: 1px; background: var(--border); }

/* ── Static Pages ─────────────────────────────────────────────────────────── */
.static-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 6rem;
}
.static-page h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: 2rem; }
.static-page-content { color: var(--text-2); line-height: 1.8; font-size: 1rem; }
.static-page-content h2 { font-size: 1.3rem; color: var(--text); margin: 1.75rem 0 .6rem; }
.static-page-content h3 { font-size: 1.1rem; color: var(--text); margin: 1.25rem 0 .4rem; }
.static-page-content p { margin-bottom: 1rem; }
.static-page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.static-page-content ul, .static-page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.static-page-content li { margin-bottom: .3rem; }

/* ── Opt-out Button ───────────────────────────────────────────────────────── */
.btn-optout {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600;
  border: 1px solid var(--border-2);
  background: var(--bg-2); color: var(--text-2);
  cursor: pointer; transition: all var(--transition);
}
.btn-optout:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn-optout.opted-out { border-color: #009966; color: #009966; background: rgba(0,153,102,.08); }

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.88);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; font-size: 1.2rem;
  display: grid; place-items: center; transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; font-size: 1.3rem;
  display: grid; place-items: center; transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Cookie Banner ────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.4rem;
  max-width: 560px;
  width: calc(100% - 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner-text { font-size: .85rem; color: var(--text-2); flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.btn-cookie-accept {
  padding: .45rem 1rem; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: .83rem; font-weight: 600; border: none; cursor: pointer;
  transition: opacity var(--transition);
}
.btn-cookie-accept:hover { opacity: .85; }
.btn-cookie-decline {
  padding: .45rem .9rem; border-radius: var(--radius-sm);
  background: transparent; color: var(--text-3);
  font-size: .83rem; font-weight: 500;
  border: 1px solid var(--border-2); cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { color: var(--text-2); border-color: var(--border-2); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem);
  background: var(--bg-2);
}
.site-footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.site-footer-text { font-size: .82rem; color: var(--text-3); }
.site-footer-links { display: flex; gap: 1.25rem; }
.site-footer-links a { font-size: .82rem; color: var(--text-3); transition: color var(--transition); }
.site-footer-links a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .venue-grid { grid-template-columns: 1fr; }
}

/* ── Header Suggest Link ──────────────────────────────────────────────────── */
.header-suggest-link {
  flex-shrink: 0;
  padding: .3rem .8rem;
  border-radius: var(--radius-lg);
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.header-suggest-link:hover { background: var(--accent-dim); }

/* ── iOS zoom fix — inputs must be ≥16px to prevent auto-zoom on focus ───── */
@media (max-width: 640px) {
  .frm-field input,
  .frm-field select,
  .frm-field textarea { font-size: 1rem; }
}

/* ── Header — mobile two-row layout ──────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --header-h: 100px; }
  .site-header { height: auto; padding-block: .75rem; }
  .header-inner { flex-wrap: wrap; row-gap: .5rem; }
  .header-cities { order: 3; flex: none; width: 100%; }
}

/* ── Suggest Page ─────────────────────────────────────────────────────────── */
.suggest-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 6rem;
}
.suggest-hero { margin-bottom: 2rem; }
.suggest-hero h1 {
  font-family: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: .75rem;
}
.suggest-intro {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 600px;
}

.suggest-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.suggest-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.suggest-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.suggest-panel h2 { font-size: 1.6rem; margin-bottom: .6rem; }
.suggest-panel p { color: var(--text-2); line-height: 1.65; }
.suggest-success { border-color: rgba(0,122,80,.3); }
.suggest-success h2 { color: #007A50; }
.suggest-success-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.suggest-error { border-color: rgba(200,32,46,.25); }
.suggest-error h2 { color: #C8202E; }

/* ── Shared Frontend Form Elements ───────────────────────────────────────── */
.frm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.frm-grid .col-2 { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .frm-grid { grid-template-columns: 1fr; }
  .frm-grid .col-2 { grid-column: 1; }
}

.frm-field { display: flex; flex-direction: column; gap: .4rem; }
.frm-field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .01em;
}
.frm-field input,
.frm-field select,
.frm-field textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.frm-field input:focus,
.frm-field select:focus,
.frm-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.frm-field textarea { min-height: 120px; resize: vertical; }
.frm-hint { font-size: .73rem; color: var(--text-3); }

.frm-checkbox-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.frm-checkbox-pill {
  display: inline-flex; align-items: center;
  padding: .38rem .85rem;
  border-radius: var(--radius-lg);
  font-size: .82rem; font-weight: 500;
  border: 1px solid var(--border-2);
  background: var(--bg);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.frm-checkbox-pill input[type=checkbox] { display: none; }
.frm-checkbox-pill:hover { color: var(--text); border-color: rgba(0,0,0,.2); }
.frm-checkbox-pill.checked { color: var(--purple); background: var(--purple-dim); border-color: rgba(123,47,255,.35); }

.btn-primary-fe {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font: inherit; font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary-fe:hover { opacity: .88; transform: translateY(-1px); }

.frm-alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500;
  margin-bottom: 1.25rem;
}
.frm-alert-error {
  background: rgba(200,32,46,.08);
  border: 1px solid rgba(200,32,46,.25);
  color: #C8202E;
}
.frm-alert-success {
  background: rgba(0,122,80,.07);
  border: 1px solid rgba(0,122,80,.25);
  color: #005A3C;
}
.frm-required { color: var(--accent); }

/* ── Venue Comments ───────────────────────────────────────────────────────── */
.venue-comments {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.comments-intro {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.comments-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}
.comments-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.comment-form { margin-top: .75rem; }

.comments-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.comment-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.comment-meta {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: .5rem;
}
.comment-author {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}
.comment-date {
  font-size: .72rem;
  color: var(--text-3);
}
.comment-body {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Draft Venue Notice ──────────────────────────────────────────────────── */
.draft-notice {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  background: rgba(215,130,0,.08);
  border: 1px solid rgba(215,130,0,.3);
  border-radius: var(--radius-sm);
  font-size: .85rem; color: #7A5000;
  margin-bottom: 1.5rem;
}
