:root {
  --gold: #212529;
  --gold-light: #343a40;
  --black: #212529;
  --white: #ffffff;
  --paper: #f5f6f7;
  --line: #e8eaed;
  --muted: #6f757b;
  --soft: #f0f2f3;
  --accent: #75c8d0;
  --coral: #d69b75;
  --sun: #e8c574;
  --violet: #8d8fef;
  --mint: #8ad4b3;
  --radius: 8px;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 24px rgba(240,111,95,.32); }
  50% { transform: scale(1.04); box-shadow: 0 14px 32px rgba(240,111,95,.42); }
}

@keyframes glowSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(160%); }
}

* { box-sizing: border-box; }
html { font-family: Inter, "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--black); background: var(--paper); }
body { margin: 0; min-height: 100vh; padding-bottom: 132px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.svg-icon { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px; background: rgba(245,246,247,.92); color: var(--black); border-bottom: 0; backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 9px; min-width: 0; font-weight: 800; }
.brand img { width: 46px; height: 46px; border-radius: 50%; background: var(--white); box-shadow: 0 8px 18px rgba(33,37,41,.08); }
.brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-actions { display: flex; align-items: center; gap: 8px; }
.icon-link { width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: var(--black); font-size: 24px; box-shadow: 0 12px 24px rgba(33,37,41,.14); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 46px; border: 0; border-radius: 999px; padding: 0 16px; font-weight: 800; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 12px 24px rgba(33,37,41,.16); }
.btn-gold:hover { background: var(--gold-light); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); border: 1px solid var(--line); }

.page { width: min(1120px, 100%); margin: 0 auto; padding: 14px; }
.premium-home {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 6px 0 18px;
  padding: 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: floatUp .45s ease both;
}
.premium-home::before,
.premium-home::after { display: none; }
.app-status,
.today-card,
.smart-search,
.quick-dock { position: relative; z-index: 1; }
.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}
.app-status span,
.app-status strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
}
.app-status .svg-icon { width: 15px; height: 15px; color: var(--accent); }
.today-card {
  display: grid;
  gap: 10px;
  padding: 0 2px;
  color: var(--black);
}
.today-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.today-card h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(30px, 8vw, 50px);
  line-height: 1.03;
  letter-spacing: 0;
}
.today-card p {
  margin: 8px 0 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}
.today-visual { display: none; }
.today-visual span {
  position: absolute;
  border-radius: 26px;
  box-shadow: 0 20px 42px rgba(0,0,0,.18);
}
.today-visual span:nth-child(1) { inset: 0 12px 38px 0; background: linear-gradient(135deg, #f97316, #fb923c); transform: rotate(7deg); }
.today-visual span:nth-child(2) { inset: 40px 0 0 34px; background: linear-gradient(135deg, #8b5cf6, #38bdf8); transform: rotate(-8deg); }
.today-visual span:nth-child(3) { left: 12px; bottom: 10px; width: 38px; height: 38px; border-radius: 16px; background: #facc15; }
.smart-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 7px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(33,37,41,.07);
}
.smart-search span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--black);
  background: transparent;
}
.smart-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-weight: 800;
}
.smart-search button {
  min-height: 50px;
  border: 0;
  border-radius: 50%;
  width: 50px;
  padding: 0;
  color: #fff;
  background: var(--black);
  font-weight: 950;
  box-shadow: none;
}
.quick-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 0;
}
.quick-dock a {
  display: grid;
  gap: 5px;
  justify-items: center;
  align-content: center;
  min-height: 102px;
  padding: 12px 8px;
  border-radius: 24px;
  color: var(--black);
  background: #fff;
  border: 0;
  text-align: center;
  box-shadow: 0 14px 28px rgba(33,37,41,.055);
}
.quick-dock .svg-icon {
  width: 24px;
  height: 24px;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 50%;
  color: #fff;
  background: var(--black);
}
.quick-dock .dock-primary .svg-icon { background: var(--black); box-shadow: 0 8px 18px rgba(33,37,41,.14); }
.quick-dock strong { font-size: 14px; line-height: 1.1; }
.quick-dock small { color: var(--muted); font-size: 11px; font-weight: 800; }
.feature-story {
  position: relative;
  min-height: 360px;
  margin: 4px 0 22px;
  border-radius: 34px;
  overflow: hidden;
  background: #93d7df;
  box-shadow: 0 22px 50px rgba(33,37,41,.14);
  animation: floatUp .5s ease both;
}
.story-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(117,200,208,.05), rgba(33,37,41,.62)),
    radial-gradient(circle at 74% 32%, #d69b75 0 8%, transparent 9%),
    linear-gradient(152deg, transparent 0 44%, #c7825e 45% 56%, transparent 57%),
    linear-gradient(145deg, #b7edf1 0%, #75c8d0 48%, #35505c 100%);
}
.story-sun {
  position: absolute;
  right: 42px;
  top: 42px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(255,255,255,.36);
}
.story-card {
  position: absolute;
  width: 150px;
  height: 210px;
  border-radius: 34px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.2);
}
.story-card-a { right: -52px; bottom: 42px; transform: rotate(7deg); }
.story-card-b { left: -70px; bottom: 26px; transform: rotate(-8deg); background: rgba(255,255,255,.12); }
.story-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
}
.story-content span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 900;
}
.story-content h2 { margin: 0; max-width: 300px; font-size: 26px; line-height: 1.05; }
.story-content p { margin: 8px 0 16px; max-width: 310px; color: rgba(255,255,255,.82); font-weight: 650; line-height: 1.45; }
.story-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 180px;
  border-radius: 999px;
  color: #fff;
  background: rgba(33,37,41,.88);
  font-weight: 900;
}
.app-hero {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 12px 0 14px;
  padding: 20px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(249,115,22,.75), transparent 18%),
    radial-gradient(circle at 15% 100%, rgba(124,58,237,.46), transparent 25%),
    linear-gradient(145deg, #0f172a 0%, #1d4ed8 52%, #2563eb 100%);
  box-shadow: 0 24px 60px rgba(30,64,175,.28);
  animation: floatUp .45s ease both;
}
.app-hero::before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 54px;
  background: rgba(255,255,255,.12);
  transform: rotate(18deg);
}
.app-hero::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 94px;
  width: 92px;
  height: 6px;
  border-radius: 99px;
  background: rgba(250,204,21,.88);
}
.hero-topline,
.app-hero h1,
.app-hero p,
.hero-search { position: relative; z-index: 1; }
.hero-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hero-topline span,
.hero-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 900;
}
.hero-topline .svg-icon { width: 15px; height: 15px; color: #facc15; }
.app-hero h1 { margin: 4px 0 0; max-width: 620px; font-size: clamp(30px, 8.6vw, 54px); line-height: 1.02; letter-spacing: 0; }
.app-hero p { margin: 0; max-width: 560px; color: rgba(255,255,255,.82); line-height: 1.55; font-weight: 600; }
.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 7px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(15,23,42,.22);
}
.hero-search .svg-icon { color: var(--gold); margin-left: 7px; }
.hero-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; color: var(--black); font-weight: 700; }
.hero-search button { min-width: 50px; min-height: 42px; border: 0; border-radius: 15px; background: var(--coral); color: #fff; font-weight: 900; }
.local-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 18px;
}
.local-strip a {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15,23,42,.075);
  animation: floatUp .5s ease both;
}
.strip-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 17px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15,23,42,.12);
}
.strip-icon .svg-icon { width: 22px; height: 22px; stroke-width: 2.35; }
.strip-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.strip-blue { background: linear-gradient(135deg, #1d4ed8, #38bdf8); }
.strip-violet { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.local-strip strong { font-size: 14px; line-height: 1.1; }
.local-strip small { color: var(--muted); font-size: 11px; font-weight: 800; line-height: 1.2; }
.category-rail { margin: 0 0 20px; }
.rail-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.rail-head h2 { margin: 2px 0 0; font-size: 22px; letter-spacing: 0; }
.rail-head .eyebrow { color: var(--muted); font-weight: 950; font-size: 12px; text-transform: uppercase; }
.rail-head > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(122px, 34%);
  gap: 10px;
  overflow-x: auto;
  padding: 0 2px 8px;
  scroll-snap-type: x proximity;
}
.rail-scroll a {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  min-height: 108px;
  padding: 13px 8px;
  border-radius: 28px;
  overflow: hidden;
  color: var(--black);
  background: #fff;
  border: 0;
  box-shadow: 0 14px 28px rgba(33,37,41,.055);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  animation: floatUp .55s ease both;
}
.rail-scroll a::after {
  display: none;
}
.rail-scroll .cat-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  border-radius: 50%;
  color: var(--black);
  background: var(--paper);
  border: 0;
}
.rail-scroll .cat-icon .svg-icon { width: 24px; height: 24px; stroke-width: 2.35; }
.home-welcome {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  margin: 10px 0 14px;
  border: 1px solid rgba(217,226,236,.9);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(249,115,22,.24), transparent 28%),
    radial-gradient(circle at 2% 100%, rgba(124,58,237,.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 58%, #ffffff 100%);
  box-shadow: 0 24px 56px rgba(15,23,42,.11);
  overflow: hidden;
  animation: floatUp .45s ease both;
}
.home-welcome::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--coral), var(--accent));
  box-shadow: 0 18px 38px rgba(249,115,22,.23);
  transform: rotate(8deg);
}
.home-welcome::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37,99,235,.11);
}
.welcome-copy, .home-search { position: relative; z-index: 1; }
.welcome-copy p:last-child { margin: 10px 0 0; color: var(--muted); line-height: 1.55; font-weight: 600; }
.welcome-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.welcome-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #1e293b;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(217,226,236,.9);
  font-size: 12px;
  font-weight: 900;
}
.welcome-metrics .svg-icon { width: 15px; height: 15px; color: var(--gold); }
.hero { display: flex; flex-direction: column; gap: 16px; padding: 20px 0 18px; }
.kicker { margin: 0 0 8px; color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 12px; }
.hero h1, .home-welcome h1 { margin: 0; font-size: clamp(25px, 7vw, 46px); line-height: 1.12; letter-spacing: 0; max-width: 820px; }
.home-search {
  display: grid;
  gap: 9px;
  padding: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(217,226,236,.95);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(15,23,42,.1);
}
.home-search label { font-size: 13px; color: var(--muted); }
.home-search div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.home-search input { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 16px; padding: 0 14px; background: #f8fbff; }
.home-search .btn { min-height: 50px; border-radius: 16px; padding: 0 13px; white-space: nowrap; }
.home-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0 0 14px; }
.action-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 74px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(15,23,42,.09);
  overflow: hidden;
  animation: floatUp .5s ease both;
}
.action-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 70px;
  background: linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,0));
  transform: translateX(-120%);
}
.action-card:hover::after { animation: glowSweep .75s ease; }
.action-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 14px 28px rgba(249,115,22,.24);
}
.action-card:not(.action-primary) .action-icon { background: linear-gradient(135deg, var(--accent), var(--gold)); box-shadow: 0 14px 28px rgba(37,99,235,.2); }
.action-icon .svg-icon { width: 23px; height: 23px; }
.action-label { width: max-content; padding: 4px 9px; border-radius: 999px; background: var(--soft); color: var(--gold); font-size: 12px; font-weight: 900; }
.action-card strong { font-size: 17px; line-height: 1.2; overflow-wrap: anywhere; }
.action-card small { color: var(--muted); font-weight: 700; }
.action-primary { background: #fff7e5; border-color: #f2d79a; }
.action-primary span { background: #ffe8ad; color: #8f5d00; }
.quick-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 12px 0 22px; }
.quick-cats a { position: relative; min-height: 112px; padding: 14px; border-radius: 24px; background: linear-gradient(180deg, #ffffff, #f8fbff); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(15,23,42,.08); font-weight: 900; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; line-height: 1.2; overflow: hidden; overflow-wrap: anywhere; animation: floatUp .55s ease both; }
.quick-cats a::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--badge), color-mix(in srgb, var(--badge) 45%, white)); }
.quick-cats a::after { content: ""; position: absolute; right: -32px; bottom: -34px; width: 96px; height: 96px; border-radius: 50%; background: color-mix(in srgb, var(--badge) 12%, white); }
.quick-cats a:nth-child(2) { animation-delay: .04s; }
.quick-cats a:nth-child(3) { animation-delay: .08s; }
.quick-cats a:nth-child(4) { animation-delay: .12s; }
.quick-cats a:nth-child(5) { animation-delay: .16s; }
.quick-cats a:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,49,59,.1); border-color: color-mix(in srgb, var(--badge) 42%, white); }
.quick-cats .cat-icon { position: relative; z-index: 1; display: inline-grid; width: 50px; height: 50px; place-items: center; border-radius: 19px; background: linear-gradient(135deg, var(--badge), color-mix(in srgb, var(--badge) 55%, #ffffff)); color: var(--white); margin-bottom: 12px; box-shadow: 0 16px 30px color-mix(in srgb, var(--badge) 22%, transparent); }
.quick-cats .cat-icon .svg-icon { width: 25px; height: 25px; stroke-width: 2.25; }
.quick-cats a { color: var(--black); }
.section-head { display: grid; gap: 10px; margin: 20px 0 12px; }
.section-head h1, .section-head h2 { margin: 0; }
.section-kicker { margin: 0 0 4px; color: var(--coral); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.filter-pills { display: flex; gap: 8px; overflow-x: auto; max-width: 100%; padding-bottom: 4px; }
.filter-pills button, .mini-filter select { white-space: nowrap; border: 1px solid var(--line); background: var(--white); padding: 10px 13px; border-radius: 999px; font-weight: 800; }
.filter-pills .is-active { background: linear-gradient(135deg, var(--black), #334155); color: var(--white); border-color: var(--black); }

.listing-grid, .directory-grid { display: grid; gap: 12px; margin-bottom: 34px; }
.listing-card, .directory-card, .detail, .search-panel, .publish-shell { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 26px rgba(23,33,43,.06); animation: floatUp .5s ease both; }
.listing-card.is-featured { border-color: rgba(229,57,53,.32); box-shadow: 0 12px 30px rgba(229,57,53,.12); background: #fff; }
.listing-photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #eee; }
.card-body, .directory-card, .detail, .search-panel, .publish-shell { padding: 15px; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border-radius: 999px; background: color-mix(in srgb, var(--badge) 12%, white); color: var(--badge); font-size: 12px; font-weight: 900; }
.badge-gold { --badge: var(--coral); color: var(--white); }
.listing-card h3, .directory-card h2 { margin: 12px 0 7px; font-size: 18px; line-height: 1.2; overflow-wrap: anywhere; }
.listing-card p, .directory-card p { color: var(--muted); margin: 0 0 10px; line-height: 1.5; }
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; padding-top: 4px; }
.card-meta a { display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border-radius: 999px; background: #e8f7ef; color: #008a4f; font-weight: 900; }
.empty { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.pagination { display: flex; gap: 8px; justify-content: center; padding: 18px 0; }
.pagination a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.pagination .is-active { background: var(--black); color: var(--white); }
.category-title { display: flex; align-items: center; gap: 12px; padding: 18px 0; }
.category-title span { color: var(--badge); font-weight: 800; }
.category-title h1 { margin: 0; }
.detail-photo { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; }
.detail h1 { margin: 12px 0 4px; font-size: clamp(26px, 7vw, 44px); line-height: 1.08; }
.detail-date, .muted { color: var(--muted); }
.detail-text { line-height: 1.75; margin: 18px 0; }
.contact-box { display: grid; gap: 10px; padding: 14px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.back-link { display: inline-block; margin-top: 16px; font-weight: 800; }
.search-form, .form-grid { display: grid; gap: 10px; }
.search-form input, label input, label textarea, label select, .mini-filter select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 12px; background: var(--white); }
.results-title { font-size: 20px; }

.publish-form { display: grid; gap: 16px; }
.step { display: none; }
.step.is-active { display: block; }
.category-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.category-picker button { min-height: 108px; border: 1px solid var(--line); border-left: 4px solid var(--badge); background: var(--white); border-radius: var(--radius); padding: 12px; text-align: left; cursor: pointer; }
.category-picker button span, .category-picker button small { display: block; color: var(--badge); font-weight: 800; }
.category-picker .is-selected { border-color: var(--gold); background: var(--soft); }
.specific-fields { display: none; }
.specific-fields.is-visible, .generic-fields { display: grid; gap: 10px; margin-top: 12px; }
label { display: grid; gap: 6px; font-weight: 700; }
textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; justify-content: space-between; gap: 10px; position: sticky; bottom: 68px; background: rgba(246,248,247,.92); padding: 10px 0; }
.alert { border-radius: var(--radius); padding: 14px; margin: 12px 0; }
.alert.error { background: #ffe9e9; border: 1px solid #f2b8b8; }
.alert.success { background: #edf9ed; border: 1px solid #abd8ab; }

.directory-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); margin-bottom: 10px; }
.pwa-banner { position: fixed; left: 0; right: 0; bottom: 60px; z-index: 90; display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--white); color: var(--black); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(36,48,54,.1); }
.pwa-banner[hidden] { display: none; }
.pwa-banner img { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto; }
.pwa-banner span { flex: 1; font-size: 13px; }
.pwa-banner button { border: 0; border-radius: 6px; background: var(--gold); color: var(--white); padding: 7px 12px; font-weight: 800; }
.pwa-banner .pwa-close { background: transparent; color: #aaa; font-size: 20px; padding: 0 4px; }
.mobile-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; height: 64px; display: grid; grid-template-columns: 1fr 1fr 72px 1fr; align-items: center; background: rgba(255,255,255,.96); color: var(--black); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(36,48,54,.08); backdrop-filter: blur(14px); }
.mobile-nav a { text-align: center; font-size: 12px; font-weight: 800; color: var(--muted); }
.mobile-nav a:not(.publish-fab) { display: grid; justify-items: center; gap: 3px; }
.mobile-nav a:not(.publish-fab) .svg-icon { width: 19px; height: 19px; }
.mobile-nav .is-active { color: var(--gold); }
.publish-fab { width: 58px; height: 58px; margin: -22px auto 0; display: grid; place-items: center; border-radius: 21px; background: linear-gradient(135deg, var(--coral), #fb923c); color: var(--white) !important; font-size: 30px !important; box-shadow: 0 10px 24px rgba(249,115,22,.34); animation: softPulse 3s ease-in-out infinite; }
.publish-fab .svg-icon { width: 28px; height: 28px; }
.site-footer { display: none; }

@media (min-width: 720px) {
  body { padding-bottom: 0; }
  .page { padding: 24px; }
  .premium-home { padding: 22px; gap: 18px; }
  .today-card { padding: 4px 0; }
  .quick-dock a { min-height: 104px; }
  .hero { flex-direction: row; align-items: flex-end; justify-content: space-between; padding: 38px 0 28px; }
  .app-hero { padding: 34px; min-height: 330px; align-content: end; }
  .app-hero h1 { max-width: 720px; }
  .hero-search { max-width: 620px; }
  .local-strip { grid-template-columns: repeat(3, 1fr); }
  .local-strip a { min-height: 118px; }
  .rail-scroll { grid-auto-flow: initial; grid-auto-columns: initial; grid-template-columns: repeat(5, 1fr); overflow: visible; }
  .rail-scroll a { min-height: 126px; }
  .feature-story { min-height: 460px; }
  .story-content { left: 30px; bottom: 30px; }
  .story-content h2 { font-size: 38px; max-width: 480px; }
  .home-welcome { grid-template-columns: 1.15fr .85fr; align-items: end; padding: 28px; margin-top: 18px; }
  .home-actions { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: flex; align-items: flex-start; justify-content: space-between; }
  .quick-cats { grid-template-columns: repeat(5, 1fr); }
  .listing-grid { grid-template-columns: repeat(3, 1fr); }
  .directory-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: repeat(3, 1fr); }
  .search-form { grid-template-columns: 1fr auto; }
  .mobile-nav, .pwa-banner { display: none; }
  .site-footer { display: block; text-align: center; padding: 28px; color: var(--muted); }
}
