/* ================================================================
   VOLUNTHOST — Master Stylesheet  v2.0
   Single file imported by every page
   ================================================================ */

/* ── GOOGLE FONTS loaded via <link> in each HTML file ── */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --primary:          #1a7a4a;
  --primary-dark:     #145f39;
  --primary-mid:      #3da06b;
  --primary-light:    #e6f4ec;
  --accent:           #f59e0b;
  --accent-light:     #fef3c7;

  /* Status */
  --pending:          #b45309;
  --pending-bg:       #fef3c7;
  --approved:         #15803d;
  --approved-bg:      #dcfce7;
  --rejected:         #b91c1c;
  --rejected-bg:      #fee2e2;

  /* Neutrals */
  --bg:               #f8f7f4;
  --surface:          #ffffff;
  --surface2:         #f1f0ed;
  --text:             #1c1c1c;
  --muted:            #6b7280;
  --hint:             #9ca3af;
  --border:           #e5e7eb;
  --border-mid:       #d1d5db;

  /* Type */
  --serif:            'Fraunces', serif;
  --sans:             'DM Sans', sans-serif;

  /* Radius */
  --r-sm:             6px;
  --r-md:             10px;
  --r-lg:             16px;
  --r-xl:             22px;
  --r-pill:           999px;

  /* Layout */
  --cont:             1300px;
  --hh:               64px;

  /* Shadows */
  --shadow-sm:        0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:        0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:        0 8px 32px rgba(26,122,74,.12);
  --shadow-card:      0 2px 8px rgba(0,0,0,.06);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--sans); }
h1,h2,h3,h4 { font-family: var(--serif); letter-spacing: -.03em; line-height: 1.15; }

/* ================================================================
   NAVBAR
   ================================================================ */

/* ================= HEADER FIX ================= */

/* ================= NAVBAR ================= */


/* ================= NAVBAR BASE ================= */

.site-nav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 110px;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

/* ================= LAYOUT ================= */

.nav-inner {
  max-width: var(--cont);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  /* premium asymmetric spacing */
  column-gap: 55px;
}

/* ================= LOGO ================= */

.brand {
  display: flex;
  align-items: center;
  padding-left: 8px; /* gives left breathing space */
}

.logo {
  height: 170px;
  width: auto;
  object-fit: contain;
  margin-left:-38px;
}

/* ================= MENU ================= */

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 21px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-md);
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg);
}

/* ================= CTA ================= */

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;

  margin-right: 6px; /* keeps right tighter than left */
}

/* ================= HAMBURGER ================= */

.nav-hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 14px 18px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text);
  border-radius: 6px;
}

.mobile-nav a:hover {
  background: var(--bg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .site-nav {
    height: 80px;
    padding: 0 16px;
  }

  .logo {
    height: 170px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    top: 80px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 170px;
  }
}
/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s, transform .15s, box-shadow .18s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,74,.25); }
.btn-primary:active { transform: none; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border-mid);
  padding: 10px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 13px 34px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow .2s, transform .15s;
  font-family: var(--sans);
}
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.18); transform: translateY(-2px); color: var(--primary-dark); }

.btn-sm {
  padding: 7px 16px;
  font-size: 12.5px;
  border-radius: var(--r-sm);
  font-weight: 600;
  border: 1.5px solid var(--border-mid);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  transition: all .15s;
  text-decoration: none;
}
.btn-sm:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm.danger { border-color: #f09595; color: var(--rejected); background: var(--rejected-bg); }
.btn-sm.danger:hover { background: #fca5a5; }
.btn-sm.success { border-color: #86efac; color: var(--approved); background: var(--approved-bg); }
.btn-sm.success:hover { background: #bbf7d0; }

/* ================================================================
   HERO (front page)
   ================================================================ */
/*.hero {*/
/*  background: linear-gradient(155deg, #e8f5ee 0%, #f4f3f0 55%, #fff 100%);*/
/*  border-bottom: 1px solid var(--border);*/
/*  padding: 88px 24px 64px;*/
/*  text-align: center;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/
/*.hero::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 560px; height: 560px;*/
/*  border-radius: 50%;*/
/*  background: radial-gradient(circle, rgba(26,122,74,.06) 0%, transparent 70%);*/
/*  top: -140px; right: -100px;*/
/*  pointer-events: none;*/
/*}*/
/*.hero::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 320px; height: 320px;*/
/*  border-radius: 50%;*/
/*  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);*/
/*  bottom: -80px; left: -60px;*/
/*  pointer-events: none;*/
/*}*/
/*.hero-badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  background: var(--primary-light);*/
/*  color: var(--primary);*/
/*  font-size: 12.5px;*/
/*  font-weight: 600;*/
/*  padding: 5px 16px;*/
/*  border-radius: var(--r-pill);*/
/*  margin-bottom: 24px;*/
/*  position: relative;*/
/*}*/
/*.badge-dot {*/
/*  width: 7px; height: 7px;*/
/*  border-radius: 50%;*/
/*  background: var(--primary);*/
/*  animation: pulse 2.2s infinite;*/
/*}*/
/*@keyframes pulse {*/
/*  0%,100%{ opacity:1; transform:scale(1); }*/
/*  50%{ opacity:.45; transform:scale(1.4); }*/
/*}*/
/*.hero h1 {*/
/*  font-size: clamp(38px, 6.5vw, 68px);*/
/*  font-weight: 900;*/
/*  line-height: 1.08;*/
/*  letter-spacing: -.04em;*/
/*  color: var(--text);*/
/*  margin-bottom: 20px;*/
/*  max-width: 740px;*/
/*  margin-inline: auto;*/
/*  position: relative;*/
/*}*/
/*.hero h1 em { font-style: italic; color: var(--primary); }*/
/*.hero-sub {*/
/*  font-size: 16.5px;*/
/*  color: var(--muted);*/
/*  max-width: 480px;*/
/*  margin: 0 auto 40px;*/
/*  line-height: 1.75;*/
/*  position: relative;*/
/*}*/
/*.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }*/

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-row {
  display: flex;
  justify-content: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  max-width: 220px;
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .01em;
}

/* ================================================================
   FILTER BAR
   ================================================================ */
.filter-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  position: sticky;
  top: var(--hh);
  z-index: 90;
}
.filter-bar-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hint);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.filter-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .16s;
  font-family: var(--sans);
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Archive selects */
.filter-select-wrap { display: flex; flex-direction: column; gap: 2px; }
.filter-select-wrap label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.filter-select-wrap select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 32px 8px 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--sans);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 155px;
  transition: border-color .18s;
}
.filter-select-wrap select:focus { outline: none; border-color: var(--primary); }
.result-count {
  font-size: 12.5px;
  color: var(--hint);
  font-weight: 500;
  margin-left: auto;
  white-space: nowrap;
}

/* ================================================================
   CARDS GRID
   ================================================================ */
.programs-section { padding: 48px 24px; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.section-header h2 { font-size: 24px; font-weight: 900; }
.section-header a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.section-header a:hover { text-decoration: underline; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Host Card */
.host-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.host-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26,122,74,.2);
}
.host-card.hidden { display: none; }

.card-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #e8f5ee 0%, #d1ead9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
  position: relative;
}
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body-inner { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.card-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card-tag.secondary { background: var(--accent-light); color: #92400e; }
.card-title {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-host-info { display: flex; align-items: center; gap: 8px; }
.card-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.card-host-name { font-size: 12px; font-weight: 600; color: var(--text); }
.card-learn-more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap .15s;
}
.card-learn-more:hover { gap: 7px; color: var(--primary-dark); }

/* ================================================================
   COUNTRY GROUP (archive)
   ================================================================ */
.country-group { margin-bottom: 52px; }
.country-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.country-heading h2 { font-size: 19px; font-weight: 900; white-space: nowrap; }
.country-heading-line { flex: 1; height: 1px; background: var(--border); }
.country-heading-count { font-size: 12.5px; color: var(--hint); white-space: nowrap; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
}
.breadcrumb-bar .bc-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
}
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color .15s; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar .bc-sep { opacity: .35; }

/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
  padding: 28px 24px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header .ph-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.page-header h1 { font-size: 24px; font-weight: 900; margin-bottom: 5px; }
.page-header p { color: var(--muted); font-size: 13.5px; }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all .15s;
  background: var(--surface);
  font-family: var(--sans);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .dots { border-color: transparent; background: none; cursor: default; }

/* ================================================================
   NO RESULTS
   ================================================================ */
.no-results-block { text-align: center; padding: 72px 24px; }
.no-results-block .nr-emoji { font-size: 44px; margin-bottom: 14px; }
.no-results-block h3 { font-size: 20px; margin-bottom: 8px; }
.no-results-block p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}
.how-section h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.how-section .subtitle { color: var(--muted); font-size: 15px; margin-bottom: 52px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  max-width: var(--cont);
  margin: 0 auto;
}
.how-step { padding: 0 12px; }
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .2s, transform .2s;
}
.how-step:hover .step-number { background: var(--primary); color: #fff; transform: scale(1.08); }
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 13.5px; color: var(--muted); line-height: 1.75; max-width: 240px; margin: 0 auto; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -150px; left: -80px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -90px; right: -60px;
  pointer-events: none;
}
.cta-section h2 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 12px; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 420px; margin: 0 auto 30px; font-size: 15px; line-height: 1.72; position: relative; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,.45);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}
.footer-brand { font-family: var(--serif); font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; justify-content: center; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ================================================================
   TAGS / PILLS / STATUS
   ================================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tag-green   { background: var(--primary-light); color: var(--primary); }
.tag-amber   { background: var(--pending-bg);    color: var(--pending); }
.tag-red     { background: var(--rejected-bg);   color: var(--rejected); }
.tag-gray    { background: var(--surface2);      color: var(--muted); }
.tag-blue    { background: #dbeafe; color: #1d4ed8; }

/* ================================================================
   ██████████████  DETAIL PAGE  ██████████████
   ================================================================ */
.detail-wrap {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 24px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 40px 0 72px;
}

/* Gallery */
.gallery-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  height: 340px;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 10px;
}
.gal-main { position: relative; overflow: hidden; }
.gal-main .gal-placeholder { height: 100%; }
.gal-col { display: flex; flex-direction: column; gap: 8px; }
.gal-thumb { flex: 1; overflow: hidden; }
.gal-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.gal-main .gal-placeholder { background: linear-gradient(135deg,#d1ead9,#e8f5ee); }
.gal-thumb:nth-child(1) .gal-placeholder { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.gal-thumb:nth-child(2) .gal-placeholder { background: linear-gradient(135deg,#dbeafe,#bfdbfe); }

.btn-all-photos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 30px;
  transition: all .15s;
  color: var(--text);
  font-family: var(--sans);
}
.btn-all-photos:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }

/* Detail header */
.detail-header { margin-bottom: 10px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-title {
  font-size: clamp(24px,4vw,34px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--text);
}
.detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.detail-meta .meta-dot { opacity: .3; }
.detail-meta .meta-verified { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* Detail sections */
.detail-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.detail-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.ds-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -.02em;
}
.detail-desc p { font-size: 15px; color: var(--text); line-height: 1.82; margin-bottom: 14px; }
.detail-desc p:last-child { margin-bottom: 0; }

/* Info tiles */
.info-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.info-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .15s;
}
.info-tile:hover { border-color: var(--primary-mid); }
.info-tile-icon { font-size: 22px; flex-shrink: 0; }
.info-tile label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hint);
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.info-tile span { font-size: 13px; font-weight: 600; color: var(--text); }

/* Detail checklist */
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-list li {
  font-size: 14.5px;
  color: var(--text);
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
}
.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

/* Photo strip */
.gallery-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.strip-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.strip-thumb:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }

/* Detail sidebar */
.detail-sidebar { position: sticky; top: calc(var(--hh) + 20px); }

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--text); }

.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-ico {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info label { font-size: 10.5px; color: var(--hint); display: block; margin-bottom: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-info span, .contact-info a { font-size: 13px; color: var(--text); word-break: break-all; text-decoration: none; }
.contact-info a { color: var(--primary); }
.contact-info a:hover { text-decoration: underline; }

.sidebar-actions { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); padding-top: 16px; }

.map-mock {
  background: #eaf3de;
  border: 1px solid #c0dd97;
  border-radius: var(--r-lg);
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.map-pin { font-size: 26px; }
.map-label { font-size: 12px; color: #3b6d11; font-weight: 600; }

.quick-facts { display: flex; flex-direction: column; gap: 0; }
.quick-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.quick-fact:last-child { border-bottom: none; padding-bottom: 0; }
.quick-fact .qf-label { color: var(--muted); }
.quick-fact .qf-val { font-weight: 600; color: var(--text); }

/* Related */
.related-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}
.related-section .rs-inner { max-width: var(--cont); margin: 0 auto; }
.related-section .section-header { margin-bottom: 28px; }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.lb-panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  max-width: 880px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  overflow: auto;
  animation: lbIn .2s ease;
}
@keyframes lbIn { from{ opacity:0; transform:scale(.96) } to{ opacity:1; transform:scale(1) } }
.lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.lb-header h3 { font-size: 14.5px; font-weight: 600; color: var(--text); }
.lb-close {
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}
.lb-close:hover { color: var(--text); }
.lb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 18px; }
.lb-item { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; }
.lb-main { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ================================================================
   ██████████████  BECOME A HOST FORM  ██████████████
   ================================================================ */
.form-page { padding: 40px 0 80px; }
.form-outer {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Form header */
.form-header { margin-bottom: 28px; }
.form-title {
  font-family: var(--serif);
  font-size: clamp(28px,4vw,40px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -.04em;
}
.form-title em { color: var(--primary); }
.form-subtitle { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 500px; }

/* Progress steps */
.form-progress { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.fp-step { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--hint); }
.fp-step.active { color: var(--primary); }
.fp-step.done { color: var(--primary-dark); }
.fp-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .2s;
}
.fp-step.active .fp-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.fp-step.done  .fp-dot { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.fp-step .fp-label { white-space: nowrap; }
.fp-line { flex: 1; height: 2px; background: var(--border-mid); min-width: 20px; transition: background .3s; }
.fp-line.done { background: var(--primary); }

/* Notice banner */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--primary-light);
  border: 1px solid rgba(26,122,74,.2);
  border-radius: var(--r-md);
  padding: 13px 15px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--primary-dark);
  line-height: 1.6;
}
.form-notice.success { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.notice-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Form step */
.form-step.hidden { display: none; }

/* Form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.form-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.form-card-num { font-family: var(--serif); font-size: 30px; color: var(--primary); opacity: .5; line-height: 1; flex-shrink: 0; }
.form-card-head h2 { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }

/* Field groups */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.field-group:last-child { margin-bottom: 0; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.field-group .req { color: var(--primary); margin-left: 2px; }

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  transition: border-color .15s, box-shadow .15s;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,122,74,.1);
  background: var(--surface);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--hint); }
.field-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.field-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }
.field-hint { font-size: 11.5px; color: var(--hint); line-height: 1.55; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border-mid);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all .18s;
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--primary); background: var(--primary-light); }
.upload-zone-inner { padding: 36px 24px; text-align: center; }
.upload-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.upload-text { font-size: 14px; color: var(--muted); margin: 0 0 4px; }
.upload-text span { color: var(--primary); font-weight: 600; }
.upload-hint { font-size: 12px; color: var(--hint); }
.upload-previews { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 0 14px 14px; }
.preview-thumb { position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; background: var(--bg); }
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: none; color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Step nav */
.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 4px;
}

/* Form sidebar */
.form-info-col {
  position: sticky;
  top: calc(var(--hh) + 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.form-info-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 14px; padding-bottom: 20px; position: relative; }
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px; top: 28px; bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--muted);
  flex-shrink: 0; background: var(--surface);
}
.tl-dot.done { background: var(--primary); border-color: var(--primary); color: #fff; }
.tl-content strong { font-size: 13px; font-weight: 600; display: block; margin-bottom: 3px; color: var(--text); }
.tl-content p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* Trust items */
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 6px 0; }
.trust-item .ti-icon { font-size: 15px; }

/* ================================================================
   ██████████████  ADMIN DASHBOARD  ██████████████
   ================================================================ */
body.admin-body { background: #f5f4f1; }

.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-logo {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.admin-badge-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.admin-nav { padding: 10px 0; flex: 1; display: flex; flex-direction: column; overflow-y: auto; }
.admin-nav-section { padding: 6px 10px; border-bottom: 1px solid var(--border); }
.admin-nav-section:last-child { border-bottom: none; }
.admin-nav-bottom { margin-top: auto; }
.admin-nav-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--hint);
  padding: 8px 8px 4px;
  display: block;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: all .14s;
  margin-bottom: 2px;
}
.admin-nav-item:hover { background: var(--bg); color: var(--text); }
.admin-nav-item.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.ani-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.ani-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}
.ani-badge.amber { background: var(--pending-bg);  color: var(--pending); }
.ani-badge.green { background: var(--primary-light); color: var(--primary-dark); }
.ani-badge.red   { background: var(--rejected-bg);  color: var(--rejected); }
.ani-badge.gray  { background: var(--surface2);     color: var(--muted); }

/* Main area */
.admin-main { padding: 30px; overflow-x: hidden; }
.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
}
.admin-page-title { font-size: 20px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 4px; color: var(--text); }
.admin-page-sub { font-size: 13px; color: var(--muted); }
.admin-topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.admin-user { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.admin-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Metrics */
.admin-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 26px; }
.metric-card {
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s;
}
.metric-card:hover { box-shadow: var(--shadow-md); }
.metric-card.amber  { background: #fffbf0; border-color: #fac775; }
.metric-card.teal   { background: #f0fdf8; border-color: var(--primary-mid); }
.metric-card.red    { background: #fff5f5; border-color: #f09595; }
.metric-card.neutral{ background: var(--surface); }
.metric-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.metric-icon { font-size: 18px; }
.metric-change { font-size: 11px; color: var(--muted); }
.metric-change.up { color: var(--primary-dark); }
.metric-val { font-size: 30px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; color: var(--text); font-family: var(--serif); }
.metric-lbl { font-size: 12px; color: var(--muted); font-weight: 500; }
.metric-card.amber .metric-val { color: var(--pending); }
.metric-card.teal  .metric-val { color: var(--primary-dark); }
.metric-card.red   .metric-val { color: var(--rejected); }

/* Tabs */
.admin-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 18px; }
.admin-tab {
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  background: none;
  border-left: none; border-right: none; border-top: none;
  transition: all .14s;
  font-weight: 500;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--text); border-bottom-color: var(--primary); font-weight: 700; }
.tab-count {
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}
.tab-count.amber { background: var(--pending-bg); color: var(--pending); }
.tab-count.green { background: var(--primary-light); color: var(--primary-dark); }
.tab-count.red   { background: var(--rejected-bg); color: var(--rejected); }
.admin-tab-content.hidden { display: none; }

/* Listing rows */
.listing-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px 18px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: start;
  transition: border-color .15s, box-shadow .15s;
  box-shadow: var(--shadow-card);
}
.listing-row:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); }
.listing-row.pending-row { border-left: 3px solid var(--accent); }
.listing-row.rejected-row { opacity: .7; border-left: 3px solid var(--rejected); }
.listing-row.approved-row { border-left: 3px solid var(--primary-mid); }

.listing-thumb {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.listing-name { font-size: 14.5px; font-weight: 700; margin-bottom: 5px; color: var(--text); letter-spacing: -.02em; }
.listing-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.listing-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.listing-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.listing-time { font-size: 11.5px; color: var(--hint); }

.listing-actions { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; min-width: 110px; flex-shrink: 0; }

/* All-listings filter */
.all-filters-bar { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 160px;
  padding: 8px 13px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  font-family: var(--sans);
  transition: border-color .15s;
}
.search-input:focus { outline: none; border-color: var(--primary); }
.all-filters-bar select {
  padding: 8px 12px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  font-family: var(--sans);
}

/* Approved table */
.approved-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-card); }
.approved-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.approved-table th {
  text-align: left;
  padding: 11px 16px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--hint);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.approved-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
.approved-table tr:last-child td { border-bottom: none; }
.approved-table tr:hover td { background: #fafaf8; }
.table-link { color: var(--primary); font-weight: 500; text-decoration: none; }
.table-link:hover { text-decoration: underline; }
.tbl-actions { display: flex; gap: 5px; align-items: center; }

/* Toast */
.admin-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all .25s;
  pointer-events: none;
  z-index: 999;
  max-width: 280px;
  box-shadow: var(--shadow-md);
}
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast.toast-success { background: var(--primary-dark); }
.admin-toast.toast-warn    { background: #7c3b00; }
.admin-toast.toast-error   { background: var(--rejected); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .admin-metrics { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr 290px; gap: 32px; }
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr; gap: 28px; }
  .detail-sidebar { position: static; }
  .gallery-hero { height: 240px; }
  .info-tiles { grid-template-columns: repeat(2,1fr); }
  .gallery-strip { grid-template-columns: repeat(4,1fr); }
  .form-outer { grid-template-columns: 1fr; gap: 24px; }
  .form-info-col { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .listing-row { grid-template-columns: 40px 1fr; }
  .listing-actions { grid-column: 1/-1; flex-direction: row; justify-content: flex-start; min-width: unset; }
  .lb-grid { grid-template-columns: repeat(2,1fr); }
  .lb-main { grid-column: span 1; grid-row: span 1; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 140px; }
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .filter-bar { position: static; }
  .filter-bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .result-count { margin-left: 0; }
  .page-header .ph-inner { flex-direction: column; align-items: flex-start; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 20px 16px; }
  .admin-metrics { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-hero { grid-template-columns: 1fr; height: auto; }
  .gal-main { height: 220px; }
  .gal-col { flex-direction: row; height: 110px; }
  .info-tiles { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3,1fr); }
  .upload-previews { grid-template-columns: repeat(3,1fr); }
  .step-actions { flex-direction: column; gap: 8px; }
  .step-actions > * { width: 100%; justify-content: center; }
  .form-info-col { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: 6px; }
  .admin-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-tab { white-space: nowrap; font-size: 12.5px; padding: 8px 12px; }
}