:root {
    --green-900: #064e2a;
    --green-800: #087236;
    --green-700: #0c8f44;
    --green-100: #e7f7ed;
    --blue-700: #0879c9;
    --blue-100: #e8f4ff;
    --coral-700: #ec4d35;
    --coral-100: #ffece8;
    --yellow-100: #fff6cf;
    --ink: #14211c;
    --muted: #60706a;
    --line: #dfe7e3;
    --surface: #ffffff;
    --surface-alt: #f5f8f6;
    --shadow: 0 14px 34px rgba(15, 39, 30, 0.11);
    --radius: 8px;
    --container: 1480px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--surface-alt);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface-alt);
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--green-700);
}

.brand-mark svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.brand-copy {
    display: grid;
    line-height: 1.02;
}

.brand-copy strong {
    color: var(--green-800);
    font-size: 28px;
    font-weight: 800;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
}

.button,
.text-button,
.icon-button {
    border: 0;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.icon-button:hover,
.text-button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--green-700);
    color: #fff;
    box-shadow: 0 10px 22px rgba(12, 143, 68, 0.22);
}

.button-secondary {
    background: var(--blue-100);
    color: #075d99;
}

.button-ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.button-glass {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(14px);
}

.button-small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
}

.text-button {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    min-height: 34px;
    padding: 0 12px;
}

.icon-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.search-control {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
}

.search-control span {
    color: var(--muted);
    font-size: 20px;
}

.search-control input {
    background: transparent;
    border: 0;
    color: var(--ink);
    min-width: 0;
    outline: 0;
    width: 100%;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: auto auto minmax(320px, 1fr) auto;
    left: 0;
    padding: 14px 22px;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
}

.city-context {
    align-items: center;
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.pin-dot {
    background: var(--green-700);
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.header-action {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px;
}

.chooser-hero {
    background: #fff;
    padding: 24px clamp(18px, 4vw, 56px) 42px;
}

.chooser-header,
.section-heading,
.panel-head,
.modal-head,
.admin-topbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.chooser-grid {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(320px, 0.84fr) minmax(340px, 1.16fr);
    margin: 56px auto 0;
    max-width: var(--container);
}

.chooser-copy {
    align-self: center;
}

.chooser-copy h1,
.city-hero h1,
.module-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    margin: 0 0 20px;
}

.chooser-copy p,
.module-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 26px;
    max-width: 680px;
}

.city-search-large {
    min-height: 58px;
    max-width: 680px;
}

.chooser-actions,
.hero-actions,
.module-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.chooser-preview {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.chooser-preview img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    width: 100%;
}

.preview-strip {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    bottom: 16px;
    display: flex;
    gap: 10px;
    left: 16px;
    padding: 10px;
    position: absolute;
    right: 16px;
}

.preview-strip span,
.tag-row span {
    background: var(--green-100);
    border-radius: 999px;
    color: var(--green-800);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
}

.city-section,
.module-band,
.portal-grid,
.banner-grid,
.module-page,
.listing-grid {
    margin-inline: auto;
    max-width: var(--container);
    padding-inline: 22px;
}

.city-section {
    padding-block: 36px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2,
.panel h2,
.admin-panel h1 {
    font-size: 24px;
    line-height: 1.15;
    margin: 0;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    max-width: 420px;
}

.section-kicker {
    color: var(--green-800);
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.city-card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    overflow: hidden;
}

.city-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.city-card-content {
    display: grid;
    gap: 6px;
    padding: 14px;
}

.city-card-content strong {
    font-size: 18px;
}

.city-card-content small,
.business-card small,
.event-info small,
.listing-meta,
.admin-user small,
.banner-admin-row small,
.plan-box small,
.plan-box span {
    color: var(--muted);
}

.module-band {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 8px 36px;
}

.module-chip {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-flex;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    font-weight: 800;
}

.module-chip span,
.category-rail span {
    background: var(--green-100);
    border-radius: 999px;
    color: var(--green-800);
    display: grid;
    height: 26px;
    place-items: center;
    width: 26px;
}

.city-hero {
    align-items: end;
    background-image: linear-gradient(90deg, rgba(5, 30, 18, 0.78), rgba(5, 30, 18, 0.25), rgba(5, 30, 18, 0.05)), var(--hero-image);
    background-position: center;
    background-size: cover;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 360px);
    min-height: 430px;
    padding: clamp(40px, 7vw, 76px) clamp(22px, 4vw, 58px);
}

.hero-content {
    color: #fff;
    max-width: 820px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 620px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta span {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    font-weight: 800;
    padding-left: 12px;
}

.hero-meta span:first-child {
    border-left: 0;
    padding-left: 0;
}

.hero-panel {
    background: rgba(17, 29, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    color: #fff;
    padding: 22px;
    backdrop-filter: blur(18px);
}

.hero-panel h2 {
    margin: 0 0 8px;
}

.hero-panel p {
    line-height: 1.5;
    margin: 0 0 18px;
}

.category-rail {
    background: var(--green-700);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px max(18px, calc((100vw - var(--container)) / 2 + 22px));
}

.category-rail a {
    align-items: center;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
}

.portal-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.04fr 1.28fr 1.16fr;
    padding-block: 18px;
}

.panel,
.admin-panel,
.stat-card,
.listing-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.panel,
.admin-panel {
    padding: 16px;
}

.panel-head {
    margin-bottom: 14px;
}

.panel-head a {
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 800;
}

.event-list {
    display: grid;
    gap: 10px;
}

.event-row {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: 56px 1fr;
    padding-bottom: 10px;
}

.date-box {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--green-800);
    display: grid;
    height: 58px;
    justify-items: center;
}

.date-box strong {
    font-size: 22px;
    line-height: 1;
}

.date-box small {
    font-size: 12px;
    font-weight: 900;
}

.event-info {
    display: grid;
    gap: 3px;
}

.event-info em {
    color: var(--green-800);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.business-grid,
.sponsor-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-card,
.sponsor-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 6px;
    min-height: 176px;
    padding: 12px;
}

.business-image {
    align-items: center;
    background: var(--blue-100);
    border-radius: var(--radius);
    color: var(--blue-700);
    display: flex;
    font-size: 34px;
    font-weight: 900;
    height: 74px;
    justify-content: center;
}

.rating {
    color: #b96800;
    font-size: 13px;
    font-weight: 800;
}

.sponsors-panel,
.map-panel {
    min-height: 230px;
}

.sponsor-card {
    min-height: 112px;
    place-content: center;
    text-align: center;
}

.sponsor-card.green {
    color: var(--green-800);
}

.sponsor-card.yellow {
    color: #8a6500;
}

.sponsor-card.coral {
    color: var(--coral-700);
}

.map-preview {
    background: linear-gradient(135deg, #edf3ef 25%, transparent 25%) 0 0 / 42px 42px,
        linear-gradient(45deg, transparent 74%, #d7e4dd 75%) 0 0 / 46px 46px,
        #f8fbf9;
    border-radius: var(--radius);
    min-height: 206px;
    overflow: hidden;
    position: relative;
}

.map-preview strong {
    color: #6b7a75;
    font-size: 34px;
    left: 50%;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
}

.map-pin {
    background: var(--green-700);
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    height: 22px;
    left: var(--x);
    position: absolute;
    top: var(--y);
    width: 22px;
}

.map-pin.blue {
    background: var(--blue-700);
}

.map-pin.coral {
    background: var(--coral-700);
}

.map-pin.violet {
    background: #7752b8;
}

.banner-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 80px;
}

.banner-grid.compact {
    padding-top: 16px;
    padding-bottom: 0;
}

.promo-banner {
    align-items: center;
    border-radius: var(--radius);
    color: #fff;
    display: flex;
    gap: 16px;
    min-height: 118px;
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.promo-banner.blue {
    background: linear-gradient(135deg, #076fbb, #0b94d9);
}

.promo-banner.green {
    background: linear-gradient(135deg, #087236, #12a261);
}

.promo-banner.coral {
    background: linear-gradient(135deg, #ec4d35, #ff7a3d);
}

.promo-banner::after {
    background: rgba(255, 255, 255, 0.12);
    content: "";
    height: 160px;
    position: absolute;
    right: -50px;
    top: -20px;
    transform: rotate(14deg);
    width: 160px;
}

.promo-icon {
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    display: grid;
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    height: 54px;
    place-items: center;
    width: 54px;
}

.promo-banner strong,
.promo-banner small {
    display: block;
}

.promo-banner strong {
    font-size: 22px;
    margin-bottom: 6px;
}

.mobile-nav {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: none;
    gap: 8px;
    left: 0;
    padding: 8px;
    position: fixed;
    right: 0;
    z-index: 12;
}

.mobile-nav a {
    color: var(--muted);
    flex: 1;
    font-size: 12px;
    font-weight: 800;
    min-width: 0;
    padding: 8px 4px;
    text-align: center;
}

.module-page {
    padding-block: 28px 70px;
}

.module-hero {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 42px);
}

.back-link {
    color: var(--blue-700);
    display: inline-flex;
    font-weight: 800;
    margin-bottom: 14px;
}

.module-tools .search-control {
    min-width: min(460px, 100%);
}

.listing-grid {
    display: grid;
    gap: 14px;
    padding-block: 16px 80px;
}

.listing-card {
    display: grid;
    gap: 16px;
    grid-template-columns: 116px minmax(0, 1fr) auto;
    padding: 14px;
}

.listing-art {
    align-items: center;
    background: var(--green-100);
    border-radius: var(--radius);
    color: var(--green-800);
    display: flex;
    font-size: 38px;
    font-weight: 900;
    justify-content: center;
    min-height: 112px;
}

.listing-body h2 {
    font-size: 22px;
    margin: 0 0 8px;
}

.listing-body p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 10px;
}

.listing-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.listing-actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.empty-state {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    min-height: 280px;
    padding: 34px;
    place-items: center;
    text-align: center;
}

.empty-state h1,
.empty-state h2 {
    margin: 0 0 10px;
}

.city-modal {
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 640px;
    padding: 22px;
    width: calc(100% - 32px);
}

.city-modal::backdrop {
    background: rgba(9, 28, 20, 0.48);
}

.modal-search {
    margin: 16px 0;
}

.city-list {
    display: grid;
    gap: 8px;
    max-height: 420px;
    overflow: auto;
}

.city-row {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
    padding: 12px;
}

.city-avatar,
.user-avatar {
    background: var(--green-100);
    border-radius: 999px;
    color: var(--green-800);
    display: grid;
    flex: 0 0 auto;
    font-weight: 900;
    height: 42px;
    place-items: center;
    width: 42px;
}

.city-row span:last-child {
    display: grid;
}

.admin-body {
    background: #f4f7f5;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: #fff;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar .brand {
    min-width: 0;
}

.admin-sidebar .brand-copy strong {
    font-size: 26px;
}

.admin-sidebar nav {
    display: grid;
    gap: 5px;
}

.admin-sidebar nav a {
    align-items: center;
    border-radius: var(--radius);
    color: #2d3d37;
    display: flex;
    gap: 10px;
    min-height: 40px;
    padding: 0 10px;
}

.admin-sidebar nav a.active {
    background: var(--green-700);
    color: #fff;
    font-weight: 800;
}

.admin-sidebar nav span {
    display: grid;
    height: 24px;
    place-items: center;
    width: 24px;
}

.plan-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding: 14px;
}

.admin-main {
    min-width: 0;
    padding: 16px 20px 34px;
}

.admin-topbar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    padding: 10px;
}

.admin-search {
    flex: 1;
}

.notification-dot {
    align-items: center;
    background: var(--coral-700);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 0 6px;
}

.admin-user {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-user span:last-child {
    display: grid;
}

.stat-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 14px;
}

.stat-card {
    display: grid;
    gap: 6px;
    min-height: 124px;
    padding: 16px;
}

.stat-icon {
    align-items: center;
    background: var(--green-100);
    border-radius: 999px;
    color: var(--green-800);
    display: flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.stat-card small {
    color: var(--muted);
    font-weight: 800;
}

.stat-card strong {
    font-size: 28px;
}

.stat-card em {
    color: var(--green-800);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.admin-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
    margin-bottom: 14px;
}

.admin-grid.lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel {
    min-width: 0;
}

.admin-panel .panel-head {
    align-items: flex-start;
}

.admin-panel h1 {
    align-items: center;
    display: flex;
    gap: 8px;
}

.admin-panel h1 span {
    background: var(--coral-700);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
}

.segmented {
    background: #eef3f0;
    border-radius: var(--radius);
    display: flex;
    gap: 2px;
    padding: 4px;
}

.segmented button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    min-height: 32px;
    padding: 0 10px;
}

.segmented button.active {
    background: var(--green-700);
    color: #fff;
}

.table-wrap {
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px 10px;
    text-align: left;
    vertical-align: middle;
}

th {
    color: #31443b;
    font-size: 12px;
    font-weight: 900;
}

td {
    color: #26352f;
    font-size: 13px;
}

.priority,
.status {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 9px;
}

.priority,
.status.pending {
    background: var(--yellow-100);
    color: #8a6500;
}

.status.queued {
    background: var(--blue-100);
    color: var(--blue-700);
}

.status.done {
    background: var(--green-100);
    color: var(--green-800);
}

.table-actions {
    white-space: nowrap;
}

.table-actions button {
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-weight: 900;
    height: 28px;
    width: 28px;
}

.table-actions button:first-child {
    background: var(--green-700);
}

.table-actions button:last-child {
    background: var(--coral-700);
}

.banner-admin-list {
    display: grid;
    gap: 9px;
}

.banner-admin-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: 54px 1fr auto;
    padding-bottom: 9px;
}

.banner-admin-row span:nth-child(2) {
    display: grid;
}

.banner-thumb {
    border-radius: 6px;
    display: block;
    height: 40px;
    width: 54px;
}

.banner-thumb.blue {
    background: linear-gradient(135deg, #0879c9, #5db7ef);
}

.banner-thumb.green {
    background: linear-gradient(135deg, #087236, #6ecf91);
}

.banner-thumb.coral {
    background: linear-gradient(135deg, #ec4d35, #ff9b73);
}

.banner-admin-row em {
    background: var(--green-100);
    border-radius: 999px;
    color: var(--green-800);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    padding: 5px 9px;
}

.targeting-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
}

.targeting-box label {
    align-items: center;
    display: flex;
    gap: 8px;
}

.targeting-box select {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 38px;
    padding: 0 10px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .global-search,
    .header-actions {
        grid-column: 1 / -1;
    }

    .portal-grid,
    .admin-grid,
    .admin-grid.lower {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .business-grid,
    .city-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header {
        align-items: stretch;
        display: flex;
        flex-direction: column;
        padding: 14px;
    }

    .site-header .brand,
    .city-context,
    .global-search,
    .header-actions {
        width: 100%;
    }

    .city-context {
        white-space: normal;
    }

    .chooser-grid,
    .city-hero,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        height: auto;
        position: relative;
    }

    .site-header {
        position: relative;
    }

    .city-context,
    .header-actions,
    .chooser-header,
    .section-heading,
    .panel-head,
    .admin-topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .header-actions,
    .chooser-actions,
    .module-tools {
        width: 100%;
    }

    .header-action {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        text-align: center;
        width: 100%;
    }

    .header-actions .header-action {
        display: none;
    }

    .button,
    .text-button {
        width: 100%;
    }

    .city-hero {
        min-height: 560px;
        padding-bottom: 36px;
    }

    .banner-grid,
    .stat-grid,
    .business-grid,
    .sponsor-grid,
    .city-card-grid {
        grid-template-columns: 1fr;
    }

    .listing-card {
        grid-template-columns: 1fr;
    }

    .listing-actions {
        justify-content: space-between;
    }

    .mobile-nav {
        display: flex;
    }

    .brand-copy strong {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
